home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / lisp / loaddefs.el < prev    next >
Lisp/Scheme  |  1993-06-21  |  235KB  |  5,351 lines

  1. ;;; loaddefs.el --- define standard autoloads and keys of other files
  2.  
  3. ;; Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  27. ;;; Special formatting conventions are used in this file!
  28. ;;;
  29. ;;; a backslash-newline is used at the beginning of a documentation string
  30. ;;; when that string should be stored in the file etc/DOCnnn, not in core.
  31. ;;;
  32. ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
  33. ;;;
  34. ;;; But you must obey certain rules to make sure the string is understood
  35. ;;; and goes into etc/DOCnnn properly.  Otherwise, the string will not go
  36. ;;; anywhere!
  37. ;;;
  38. ;;; The doc string must appear in the standard place in a call to
  39. ;;; defun, autoload, defvar or defconst.  No Lisp macros are recognized.
  40. ;;; The open-paren starting the definition must appear in column 0.
  41. ;;;
  42. ;;; In defvar and defconst, there is an additional rule:
  43. ;;; The double-quote that starts the string must be on the same
  44. ;;; line as the defvar or defconst.
  45. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  46.  
  47. ;;; **********************************************************************
  48. ;;; You should never need to write autoloads by hand and put them here.
  49. ;;;
  50. ;;; It is no longer necessary.  Instead use autoload.el to maintain them
  51. ;;; for you.  Just insert ";;;###autoload" before defuns or defmacros you
  52. ;;; want to be autoloaded, or other forms you want copied into loaddefs.el
  53. ;;; (defvars, key definitions, etc.).  For example, 
  54. ;;;    ;;;###autoload
  55. ;;;    (defun foobar () ....)
  56. ;;;    ;;;###autoload (define-key global-map "f" 'foobar)
  57. ;;;    ;;;###autoload
  58. ;;;    (defvar foobar-var nil "\
  59. ;;;    This is foobar-var's doc-string.")
  60. ;;;
  61. ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
  62. ;;;
  63. ;;; You can also use M-x update-directory-autoloads to update the autoloads
  64. ;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
  65. ;;; update-autoloads-here to update the autoloads for each file that
  66. ;;; already has an autoload section in this file.
  67. ;;; **********************************************************************
  68.  
  69. ;;; Code:
  70.  
  71. ;;; This code was NOT generated by autoload.el.
  72.  
  73. (defconst mode-line-buffer-identification (purecopy '("Emacs: %12b"))
  74.   "Mode-line control for identifying the buffer being displayed.
  75. Its default value is \"Emacs: %17b\".  Major modes that edit things
  76. other than ordinary files may change this (e.g. Info, Dired,...)")
  77.  
  78. (make-variable-buffer-local 'mode-line-buffer-identification)
  79.  
  80. (defconst mode-line-process nil
  81.   "Mode-line control for displaying info on process status.
  82. Normally nil in most modes, since there is no process to display.")
  83.  
  84. (make-variable-buffer-local 'mode-line-process)
  85.  
  86. (defconst mode-line-modified (purecopy '("--%1*%1*-"))
  87.   "Mode-line control for displaying whether current buffer is modified.")
  88.  
  89. (make-variable-buffer-local 'mode-line-modified)
  90.  
  91. (setq-default mode-line-format
  92.   (list (purecopy "")
  93.    'mode-line-modified
  94.    'mode-line-buffer-identification
  95.    (purecopy "   ")
  96.    'global-mode-string
  97.    (purecopy "   %[(")
  98.    'mode-name 'minor-mode-alist "%n" 'mode-line-process
  99.    (purecopy ")%]--")
  100.    (purecopy '(line-number-mode "L%l--"))
  101.    (purecopy '(-3 . "%p"))
  102.    (purecopy "-%-")))
  103.  
  104. (defvar minor-mode-alist nil "\
  105. Alist saying how to show minor modes in the mode line.
  106. Each element looks like (VARIABLE STRING);
  107. STRING is included in the mode line iff VARIABLE's value is non-nil.
  108.  
  109. Actually, STRING need not be a string; any possible mode-line element
  110. is okay.  See `mode-line-format'.")
  111. (setq minor-mode-alist (mapcar 'purecopy
  112.                    '((abbrev-mode " Abbrev")
  113.                  (overwrite-mode overwrite-mode)
  114.                  (auto-fill-function " Fill")
  115.                  ;; not really a minor mode...
  116.                  (defining-kbd-macro " Def"))))
  117.  
  118. ;; These variables are used by autoloadable packages.
  119. ;; They are defined here so that they do not get overridden
  120. ;; by the loading of those packages.
  121.  
  122. ;; Names in directory that end in one of these
  123. ;; are ignored in completion,
  124. ;; making it more likely you will get a unique match.
  125. (setq completion-ignored-extensions
  126.       (if (eq system-type 'vax-vms)
  127.       '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
  128.         ".dvi" ".toc" ".log" ".aux"
  129.         ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
  130.         ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")
  131.     '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
  132.       ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  133.       ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt")))
  134.  
  135. (make-variable-buffer-local 'indent-tabs-mode)
  136.  
  137. ;; This is here to avoid autoloading etags on M-TAB.
  138. ;; M-x visit-tags-table will autoload etags, which will redefine complete-tag.
  139. (defun complete-tag ()
  140.   "Perform tags completion on the text around point.
  141. Completes to the set of names listed in the current tags table.  
  142. The string to complete is chosen in the same way as the default
  143. for \\[find-tag] (which see)."
  144.   (interactive)
  145.   (error (substitute-command-keys
  146.       "No tags table loaded.  Try \\[visit-tags-table].")))
  147.  
  148. ;; Reduce total amount of space we must allocate during this function
  149. ;; that we will not need to keep permanently.
  150. (garbage-collect)
  151.  
  152. (define-key ctl-x-map "n" (make-sparse-keymap))
  153. (define-key ctl-x-map "r" (make-sparse-keymap))
  154.  
  155. ;These commands are defined in editfns.c
  156. ;but they are not assigned to keys there.
  157. (put 'narrow-to-region 'disabled t)
  158. (define-key ctl-x-map "nn" 'narrow-to-region)
  159. (define-key ctl-x-map "nw" 'widen)
  160. ;; (define-key ctl-x-map "n" 'narrow-to-region)
  161. ;; (define-key ctl-x-map "w" 'widen)
  162.  
  163. (define-key global-map "\C-j" 'newline-and-indent)
  164. (define-key global-map "\C-m" 'newline)
  165. (define-key global-map "\C-o" 'open-line)
  166. (define-key esc-map "\C-o" 'split-line)
  167. (define-key global-map "\C-q" 'quoted-insert)
  168. (define-key esc-map "^" 'delete-indentation)
  169. (define-key esc-map "\\" 'delete-horizontal-space)
  170. (define-key esc-map "m" 'back-to-indentation)
  171. (define-key ctl-x-map "\C-o" 'delete-blank-lines)
  172. (define-key esc-map " " 'just-one-space)
  173. (define-key esc-map "z" 'zap-to-char)
  174. (define-key esc-map "=" 'count-lines-region)
  175. (define-key ctl-x-map "=" 'what-cursor-position)
  176. ;; This key sequence might cause a certain amount of trouble with function
  177. ;; keys.  Namely, it means you can't bind ESC followed by a function key.
  178. ;; However, people might not mind that too terribly much.
  179. ;; So I will leave this alone for now.
  180. (define-key esc-map "\e" 'eval-expression)
  181. ;; Changed from C-x ESC so that function keys work following C-x.
  182. (define-key ctl-x-map "\e\e" 'repeat-complex-command)
  183. (define-key ctl-x-map "u" 'advertised-undo)
  184. ;; Many people are used to typing C-/ on X terminals and getting C-_.
  185. (define-key global-map [?\C-/] 'undo)
  186. (define-key global-map "\C-_" 'undo)
  187. (define-key esc-map "!" 'shell-command)
  188. (define-key esc-map "|" 'shell-command-on-region)
  189.  
  190. (define-key global-map "\C-u" 'universal-argument)
  191. (let ((i ?0))
  192.   (while (<= i ?9)
  193.     (define-key esc-map (char-to-string i) 'digit-argument)
  194.     (setq i (1+ i))))
  195. (define-key esc-map "-" 'negative-argument)
  196. ;; Define control-digits.
  197. (let ((i ?0))
  198.   (while (<= i ?9)
  199.     (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  200.     (setq i (1+ i))))
  201. (define-key global-map [?\C--] 'negative-argument)
  202. ;; Define control-meta-digits.
  203. (let ((i ?0))
  204.   (while (<= i ?9)
  205.     (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  206.     (setq i (1+ i))))
  207. (define-key global-map [?\C-\M--] 'negative-argument)
  208.  
  209. (define-key global-map "\C-k" 'kill-line)
  210. (define-key global-map "\C-w" 'kill-region)
  211. (define-key esc-map "w" 'kill-ring-save)
  212. (define-key esc-map "\C-w" 'append-next-kill)
  213. (define-key global-map "\C-y" 'yank)
  214. (define-key esc-map "y" 'yank-pop)
  215.  
  216. ;; (define-key ctl-x-map "a" 'append-to-buffer)
  217.  
  218. (define-key global-map "\C-@" 'set-mark-command)
  219. ;; Many people are used to typing C-SPC and getting C-@.
  220. (define-key global-map [?\C-\ ] 'set-mark-command)
  221. (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
  222.  
  223. (define-key global-map "\C-n" 'next-line)
  224. (define-key global-map "\C-p" 'previous-line)
  225. (define-key ctl-x-map "\C-n" 'set-goal-column)
  226.  
  227. ;;(defun function-key-error ()
  228. ;;  (interactive)
  229. ;;  (error "That function key is not bound to anything."))
  230.  
  231. ;; natural bindings for terminal keycaps --- defined in X keysym order
  232. (define-key global-map [home]        'beginning-of-buffer)
  233. (define-key global-map [left]        'backward-char)
  234. (define-key global-map [up]        'previous-line)
  235. (define-key global-map [right]        'forward-char)
  236. (define-key global-map [down]        'next-line)
  237. (define-key global-map [prior]        'scroll-down)
  238. (define-key global-map [next]        'scroll-up)
  239. (define-key global-map [end]        'end-of-buffer)
  240. (define-key global-map [begin]        'beginning-of-buffer)
  241. ;; (define-key global-map [select]        'function-key-error)
  242. ;; (define-key global-map [print]        'function-key-error)
  243. (define-key global-map [execute]    'execute-extended-command)
  244. (define-key global-map [insert]        'overwrite-mode)
  245. (define-key global-map [undo]        'undo)
  246. (define-key global-map [redo]        'repeat-complex-command)
  247. ;; (define-key global-map [clearline]    'function-key-error)
  248. (define-key global-map [insertline]    'open-line)
  249. (define-key global-map [deleteline]    'kill-line)
  250. ;; (define-key global-map [insertchar]    'function-key-error)
  251. (define-key global-map [deletechar]    'delete-char)
  252. ;; (define-key global-map [backtab]    'function-key-error)
  253. ;; (define-key global-map [f1]        'function-key-error)
  254. ;; (define-key global-map [f2]        'function-key-error)
  255. ;; (define-key global-map [f3]        'function-key-error)
  256. ;; (define-key global-map [f4]        'function-key-error)
  257. ;; (define-key global-map [f5]        'function-key-error)
  258. ;; (define-key global-map [f6]        'function-key-error)
  259. ;; (define-key global-map [f7]        'function-key-error)
  260. ;; (define-key global-map [f8]        'function-key-error)
  261. ;; (define-key global-map [f9]        'function-key-error)
  262. ;; (define-key global-map [f10]        'function-key-error)
  263. ;; (define-key global-map [f11]        'function-key-error)
  264. ;; (define-key global-map [f12]        'function-key-error)
  265. ;; (define-key global-map [f13]        'function-key-error)
  266. ;; (define-key global-map [f14]        'function-key-error)
  267. ;; (define-key global-map [f15]        'function-key-error)
  268. ;; (define-key global-map [f16]        'function-key-error)
  269. ;; (define-key global-map [f17]        'function-key-error)
  270. ;; (define-key global-map [f18]        'function-key-error)
  271. ;; (define-key global-map [f19]        'function-key-error)
  272. ;; (define-key global-map [f20]        'function-key-error)
  273. ;; (define-key global-map [f21]        'function-key-error)
  274. ;; (define-key global-map [f22]        'function-key-error)
  275. ;; (define-key global-map [f23]        'function-key-error)
  276. ;; (define-key global-map [f24]        'function-key-error)
  277. ;; (define-key global-map [f25]        'function-key-error)
  278. ;; (define-key global-map [f26]        'function-key-error)
  279. ;; (define-key global-map [f27]        'function-key-error)
  280. ;; (define-key global-map [f28]        'function-key-error)
  281. ;; (define-key global-map [f29]        'function-key-error)
  282. ;; (define-key global-map [f30]        'function-key-error)
  283. ;; (define-key global-map [f31]        'function-key-error)
  284. ;; (define-key global-map [f32]        'function-key-error)
  285. ;; (define-key global-map [f33]        'function-key-error)
  286. ;; (define-key global-map [f34]        'function-key-error)
  287. ;; (define-key global-map [f35]        'function-key-error)
  288. ;; (define-key global-map [kp-backtab]    'function-key-error)
  289. ;; (define-key global-map [kp-space]    'function-key-error)
  290. ;; (define-key global-map [kp-tab]        'function-key-error)
  291. ;; (define-key global-map [kp-enter]    'function-key-error)
  292. ;; (define-key global-map [kp-f1]        'function-key-error)
  293. ;; (define-key global-map [kp-f2]        'function-key-error)
  294. ;; (define-key global-map [kp-f3]        'function-key-error)
  295. ;; (define-key global-map [kp-f4]        'function-key-error)
  296. ;; (define-key global-map [kp-multiply]    'function-key-error)
  297. ;; (define-key global-map [kp-add]        'function-key-error)
  298. ;; (define-key global-map [kp-separator]    'function-key-error)
  299. ;; (define-key global-map [kp-subtract]    'function-key-error)
  300. ;; (define-key global-map [kp-decimal]    'function-key-error)
  301. ;; (define-key global-map [kp-divide]    'function-key-error)
  302. ;; (define-key global-map [kp-0]        'function-key-error)
  303. ;; (define-key global-map [kp-1]        'function-key-error)
  304. ;; (define-key global-map [kp-2]        'function-key-error)
  305. ;; (define-key global-map [kp-3]        'function-key-error)
  306. ;; (define-key global-map [kp-4]        'function-key-error)
  307. ;; (define-key global-map [kp-5]        'recenter)
  308. ;; (define-key global-map [kp-6]        'function-key-error)
  309. ;; (define-key global-map [kp-7]        'function-key-error)
  310. ;; (define-key global-map [kp-8]        'function-key-error)
  311. ;; (define-key global-map [kp-9]        'function-key-error)
  312. ;; (define-key global-map [kp-equal]    'function-key-error)
  313.  
  314. (define-key global-map "\C-t" 'transpose-chars)
  315. (define-key esc-map "t" 'transpose-words)
  316. (define-key esc-map "\C-t" 'transpose-sexps)
  317. (define-key ctl-x-map "\C-t" 'transpose-lines)
  318.  
  319. (define-key esc-map ";" 'indent-for-comment)
  320. (define-key esc-map "j" 'indent-new-comment-line)
  321. (define-key esc-map "\C-j" 'indent-new-comment-line)
  322. (define-key ctl-x-map ";" 'set-comment-column)
  323. (define-key ctl-x-map "f" 'set-fill-column)
  324. (define-key ctl-x-map "$" 'set-selective-display)
  325.  
  326. (define-key esc-map "@" 'mark-word)
  327. (define-key esc-map "f" 'forward-word)
  328. (define-key esc-map "b" 'backward-word)
  329. (define-key esc-map "d" 'kill-word)
  330. (define-key esc-map "\177" 'backward-kill-word)
  331.  
  332. (define-key esc-map "<" 'beginning-of-buffer)
  333. (define-key esc-map ">" 'end-of-buffer)
  334. (define-key ctl-x-map "h" 'mark-whole-buffer)
  335. (define-key esc-map "\\" 'delete-horizontal-space)
  336.  
  337. (defalias 'mode-specific-command-prefix (make-sparse-keymap))
  338. (defconst mode-specific-map (symbol-function 'mode-specific-command-prefix)
  339.   "Keymap for characters following C-c.")
  340. (define-key global-map "\C-c" 'mode-specific-command-prefix)
  341.  
  342. (global-set-key [M-right]  'forward-word)
  343. (global-set-key [M-left]   'backward-word)
  344.  
  345. (define-key esc-map "\C-f" 'forward-sexp)
  346. (define-key esc-map "\C-b" 'backward-sexp)
  347. (define-key esc-map "\C-u" 'backward-up-list)
  348. (define-key esc-map "\C-@" 'mark-sexp)
  349. (define-key esc-map [?\C-\ ] 'mark-sexp)
  350. (define-key esc-map "\C-d" 'down-list)
  351. (define-key esc-map "\C-k" 'kill-sexp)
  352. (define-key esc-map "\C-n" 'forward-list)
  353. (define-key esc-map "\C-p" 'backward-list)
  354. (define-key esc-map "\C-a" 'beginning-of-defun)
  355. (define-key esc-map "\C-e" 'end-of-defun)
  356. (define-key esc-map "\C-h" 'mark-defun)
  357. (define-key esc-map "(" 'insert-parentheses)
  358. (define-key esc-map ")" 'move-past-close-and-reindent)
  359. (define-key esc-map "\t" 'lisp-complete-symbol)
  360.  
  361. (define-key ctl-x-map "\C-e" 'eval-last-sexp)
  362.  
  363. (define-key ctl-x-map "r\C-@" 'point-to-register)
  364. (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
  365. (define-key ctl-x-map "r " 'point-to-register)
  366. (define-key ctl-x-map "rj" 'jump-to-register)
  367. (define-key ctl-x-map "rs" 'copy-to-register)
  368. (define-key ctl-x-map "rx" 'copy-to-register)
  369. (define-key ctl-x-map "ri" 'insert-register)
  370. (define-key ctl-x-map "rg" 'insert-register)
  371. (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
  372. (define-key ctl-x-map "rk" 'kill-rectangle)
  373. (define-key ctl-x-map "ry" 'yank-rectangle)
  374. (define-key ctl-x-map "ro" 'open-rectangle)
  375. (define-key ctl-x-map "rt" 'fill-rectangle)
  376. (define-key ctl-x-map "rw" 'window-configuration-to-register)
  377. (define-key ctl-x-map "rf" 'frame-configuration-to-register)
  378.  
  379. (define-key ctl-x-map "/" 'point-to-register)
  380. (define-key ctl-x-map "j" 'jump-to-register)
  381. (define-key ctl-x-map "x" 'copy-to-register)
  382. (define-key ctl-x-map "g" 'insert-register)
  383. ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
  384.  
  385. (define-key esc-map "q" 'fill-paragraph)
  386. ;; (define-key esc-map "g" 'fill-region)
  387. (define-key ctl-x-map "." 'set-fill-prefix)
  388.  
  389. (define-key esc-map "{" 'backward-paragraph)
  390. (define-key esc-map "}" 'forward-paragraph)
  391. (define-key esc-map "h" 'mark-paragraph)
  392. (define-key esc-map "a" 'backward-sentence)
  393. (define-key esc-map "e" 'forward-sentence)
  394. (define-key esc-map "k" 'kill-sentence)
  395. (define-key ctl-x-map "\177" 'backward-kill-sentence)
  396.  
  397. (define-key ctl-x-map "[" 'backward-page)
  398. (define-key ctl-x-map "]" 'forward-page)
  399. (define-key ctl-x-map "\C-p" 'mark-page)
  400. (define-key ctl-x-map "l" 'count-lines-page)
  401. (define-key ctl-x-map "np" 'narrow-to-page)
  402. ;; (define-key ctl-x-map "p" 'narrow-to-page)
  403.  
  404. (define-key ctl-x-map "al" 'add-mode-abbrev)
  405. (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
  406. (define-key ctl-x-map "ag" 'add-global-abbrev)
  407. (define-key ctl-x-map "a+" 'add-mode-abbrev)
  408. (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
  409. (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
  410. (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
  411. (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
  412. (define-key ctl-x-map "ae" 'expand-abbrev)
  413. (define-key ctl-x-map "a'" 'expand-abbrev)
  414. ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
  415. ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
  416. ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
  417. ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
  418. (define-key esc-map "'" 'abbrev-prefix-mark)
  419. (define-key ctl-x-map "'" 'expand-abbrev)
  420.  
  421.  
  422. ;;; Generated autoloads follow (made by autoload.el).
  423.  
  424. ;;; To sort them, execute the following after narrowing
  425. ;;; to a region starting just after the following formfeed (control-l)
  426. ;;; and ending just after the last formfeed in the file.
  427.  
  428. ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^ ]* " "\\1"
  429. ;;;            (point-min) (point-max))
  430.  
  431. ;;;### (autoloads (change-log-mode add-change-log-entry-other-window add-change-log-entry find-change-log) "add-log" "add-log.el" (11285 49636))
  432. ;;; Generated autoloads from add-log.el
  433.  
  434. (defvar change-log-default-name nil "\
  435. *Name of a change log file for \\[add-change-log-entry].")
  436.  
  437. (autoload (quote find-change-log) "add-log" "\
  438. Find a change log file for \\[add-change-log-entry] and return the name.
  439. Optional arg FILE-NAME is a name to try first.
  440. If FILE-NAME is nil, use the value of `change-log-default-name' if non-nil.
  441. Failing that, use \"ChangeLog\" in the current directory.
  442. If the file does not exist in the named directory, successive parent
  443. directories are tried.
  444.  
  445. Once a file is found, `change-log-default-name' is set locally in the
  446. current buffer to the complete file name." nil nil)
  447.  
  448. (autoload (quote add-change-log-entry) "add-log" "\
  449. Find change log file and add an entry for today.
  450. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  451. Second arg is file name of change log.  If nil, uses `change-log-default-name'.
  452. Third arg OTHER-WINDOW non-nil means visit in other window." t nil)
  453.  
  454. (autoload (quote add-change-log-entry-other-window) "add-log" "\
  455. Find change log file in other window and add an entry for today.
  456. First arg (interactive prefix) non-nil means prompt for user name and site.
  457. Second arg is file name of change log.
  458. Interactively, with a prefix argument, the file name is prompted for." t nil)
  459. (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
  460.  
  461. (autoload (quote change-log-mode) "add-log" "\
  462. Major mode for editing change logs; like Indented Text Mode.
  463. Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
  464. New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
  465. Each entry behaves as a paragraph, and the entries for one day as a page.
  466. Runs `change-log-mode-hook'." t nil)
  467.  
  468. ;;;***
  469.  
  470. ;;;### (autoloads (ad-start-advice defadvice ad-add-advice) "advice" "advice.el" (11266 60950))
  471. ;;; Generated autoloads from advice.el
  472.  
  473. (defvar ad-start-advice-on-load nil "\
  474. *Non-NIL will start advice magic when this file gets loaded.
  475. Also see function `ad-start-advice'.")
  476.  
  477. (defvar ad-activate-on-definition nil "\
  478. *Non-NIL means automatic advice activation at function definition.
  479. Set this variable to t if you want to enable forward advice (which is
  480. automatic advice activation of a previously undefined function at the
  481. point the function gets defined/loaded/autoloaded). The value of this
  482. variable takes effect only during the execution of `ad-start-advice'. 
  483. If non-NIL it will enable definition hooks regardless of the value
  484. of `ad-enable-definition-hooks'.")
  485.  
  486. (defvar ad-redefinition-action (quote warn) "\
  487. *Defines what to do with redefinitions during de/activation.
  488. Redefinition occurs if a previously activated function that already has an
  489. original definition associated with it gets redefined and then de/activated.
  490. In such a case we can either accept the current definition as the new
  491. original definition, discard the current definition and replace it with the
  492. old original, or keep it and raise an error. The values `accept', `discard',
  493. `error' or `warn' govern what will be done. `warn' is just like `accept' but
  494. it additionally prints a warning message. All other values will be
  495. interpreted as `error'.")
  496.  
  497. (defvar ad-definition-hooks nil "\
  498. *List of hooks to be run after a function definition.
  499. The variable `ad-defined-function' will be bound to the name of
  500. the currently defined function when the hook function is run.")
  501.  
  502. (defvar ad-enable-definition-hooks nil "\
  503. *Non-NIL will enable hooks to be run on function definition.
  504. Setting this variable is a noop unless the value of
  505. `ad-activate-on-definition' (which see) is NIL.")
  506.  
  507. (defvar ad-use-jwz-byte-compiler (fboundp (quote eval-when-compile)) "\
  508. *Non-NIL means Jamie Zawinski's v19 byte-compiler will be used.
  509. If you use a v18 Emacs and don't use jwz's optimizing byte-compiler (the
  510. normal case) then this variable should be NIL, because otherwise
  511. enabling definition hooks (e.g., for forward advice) will redefine the 
  512. `byte-code' subr which will lead to some performance degradation for
  513. byte-compiled code.")
  514.  
  515. (autoload (quote ad-add-advice) "advice" "\
  516. Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
  517. If FUNCTION already has one or more pieces of advice of the specified
  518. CLASS then POSITION determines where the new piece will go. The value
  519. of POSITION can either be `first', `last' or a number where 0 corresponds
  520. to `first'. Numbers outside the range will be mapped to the closest
  521. extreme position. If there was already a piece of ADVICE with the same
  522. name, then the position argument will be ignored and the old advice
  523. will be overwritten with the new one.
  524.     If the FUNCTION was not advised already, then its advice info will be 
  525. initialized. Redefining a piece of advice whose name is part of the cache-id
  526. will clear the cache." nil nil)
  527.  
  528. (autoload (quote defadvice) "advice" "\
  529. Defines a piece of advice for FUNCTION (a symbol).
  530.  
  531.   (defadvice <function> (<class> <name> [<position>] [<arglist>] {<flags>}*)
  532.     [ [<documentation-string>] [<interactive-form>] ]
  533.     {<body-form>}* )
  534.  
  535. <function> ::= name of the function to be advised
  536. <class> ::= before | around | after | activation | deactivation
  537. <name> ::= non-NIL symbol that names this piece of advice
  538. <position> ::= first | last | <number> (optional, defaults to `first',
  539.     see also `ad-add-advice')
  540. <arglist> ::= an optional argument list to be used for the advised function
  541.     instead of the argument list of the original. The first one found in
  542.     before/around/after advices will be used.
  543. <flags> ::= protect | disable | activate | compile | preactivate
  544.     All flags can be specified with unambiguous initial substrings.
  545. <documentation-string> ::= optional documentation for this piece of advice
  546. <interactive-form> ::= optional interactive form to be used for the advised
  547.     function. The first one found in before/around/after advices will be used.
  548. <body-form> ::= any s-expression
  549.  
  550. Semantics of the various flags:
  551. `protect': The piece of advice will be protected against non-local exits in
  552. any code that precedes it. If any around advice of a function is protected
  553. then automatically all around advices will be protected (the complete onion).
  554.  
  555. `activate': All advice of FUNCTION will be activated immediately if
  556. FUNCTION has been properly defined prior to the defadvice.
  557.  
  558. `compile': In conjunction with `activate' specifies that the resulting
  559. advised function should be compiled.
  560.  
  561. `disable': The defined advice will be disabled, hence it will not be used 
  562. during activation until somebody enables it.
  563.  
  564. `preactivate': Preactivates the advised FUNCTION at macro expansion/compile
  565. time. This generates a compiled advised definition according to the current
  566. advice state that will be used during activation if appropriate. Only use
  567. this if the defadvice gets actually compiled (with a v18 byte-compiler put
  568. the defadvice into the body of a defun).
  569.  
  570. Look at the file advice.el for comprehensive documentation." nil t)
  571.  
  572. (autoload (quote ad-start-advice) "advice" "\
  573. Redefines some primitives to start the advice magic.
  574. If `ad-activate-on-definition' is t then advice information will
  575. automatically get activated whenever an advised function gets defined or
  576. redefined.  This will enable goodies such as forward advice and
  577. automatically enable function definition hooks. If its value is nil but
  578. the value of `ad-enable-definition-hooks' is t then definition hooks
  579. will be enabled without having automatic advice activation, otherwise
  580. function definition hooks will be disabled too. If definition hooks are
  581. enabled then functions stored in `ad-definition-hooks' are run whenever
  582. a function gets defined or redefined." t nil)
  583.  
  584. ;;;***
  585.  
  586. ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "ange-ftp.el" (11287 33186))
  587. ;;; Generated autoloads from ange-ftp.el
  588.  
  589. (autoload (quote ange-ftp-hook-function) "ange-ftp" nil nil nil)
  590.  
  591. (or (assoc "^/[^/:]+:" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]+:" . ange-ftp-hook-function)) file-name-handler-alist)))
  592.  
  593. ;;;***
  594.  
  595. ;;;### (autoloads (appt-make-list) "appt" "appt.el" (10941 42374))
  596. ;;; Generated autoloads from appt.el
  597.  
  598. (defvar appt-issue-message t "\
  599. *Non-nil means check for appointments in the diary buffer.
  600. To be detected, the diary entry must have the time
  601. as the first thing on a line.")
  602.  
  603. (defvar appt-message-warning-time 10 "\
  604. *Time in minutes before an appointment that the warning begins.")
  605.  
  606. (defvar appt-audible t "\
  607. *Non-nil means beep to indicate appointment.")
  608.  
  609. (defvar appt-visible t "\
  610. *Non-nil means display appointment message in echo area.")
  611.  
  612. (defvar appt-display-mode-line t "\
  613. *Non-nil means display minutes to appointment and time on the mode line.")
  614.  
  615. (defvar appt-msg-window t "\
  616. *Non-nil means display appointment message in another window.")
  617.  
  618. (defvar appt-display-duration 5 "\
  619. *The number of seconds an appointment message is displayed.")
  620.  
  621. (defvar appt-display-diary t "\
  622. *Non-nil means to display the next days diary on the screen. 
  623. This will occur at midnight when the appointment list is updated.")
  624.  
  625. (autoload (quote appt-make-list) "appt" nil nil nil)
  626.  
  627. ;;;***
  628.  
  629. ;;;### (autoloads (super-apropos apropos) "apropos" "apropos.el" (11283 60450))
  630. ;;; Generated autoloads from apropos.el
  631.  
  632. (autoload (quote apropos) "apropos" "\
  633. Show all symbols whose names contain matches for REGEXP.
  634. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  635. showing key bindings.  Optional argument PRED is called with each symbol, and
  636. if it returns nil, the symbol is not shown.
  637.  
  638. Returns list of symbols and documentation found." t nil)
  639.  
  640. (autoload (quote super-apropos) "apropos" "\
  641. Show symbols whose names/documentation contain matches for REGEXP.
  642. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  643. showing key bindings and documentation that is not stored in the documentation
  644. file.
  645.  
  646. Returns list of symbols and documentation found." t nil)
  647.  
  648. ;;;***
  649.  
  650. ;;;### (autoloads (asm-mode) "asm-mode" "asm-mode.el" (11240 17420))
  651. ;;; Generated autoloads from asm-mode.el
  652.  
  653. (autoload (quote asm-mode) "asm-mode" "\
  654. Major mode for editing typical assembler code.
  655. Features a private abbrev table and the following bindings:
  656.  
  657. \\[asm-colon]    outdent a preceding label, tab to next tab stop.
  658. \\[tab-to-tab-stop]    tab to next tab stop.
  659. \\[asm-newline]    newline, then tab to next tab stop.
  660. \\[asm-comment]    smart placement of assembler comments.
  661.  
  662. The character used for making comments is set by the variable
  663. `asm-comment-char' (which defaults to `?;').
  664.  
  665. Alternatively, you may set this variable in `asm-set-comment-hook', which is
  666. called near the beginning of mode initialization.
  667.  
  668. Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
  669.  
  670. Special commands:\\{asm-mode-map}
  671. " t nil)
  672.  
  673. ;;;***
  674.  
  675. ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads) "autoload" "autoload.el" (11295 42814))
  676. ;;; Generated autoloads from autoload.el
  677.  
  678. (autoload (quote update-file-autoloads) "autoload" "\
  679. Update the autoloads for FILE in `generated-autoload-file'
  680. (which FILE might bind in its local variables)." t nil)
  681.  
  682. (autoload (quote update-autoloads-here) "autoload" "\
  683. Update sections of the current buffer generated by \\[update-file-autoloads]." t nil)
  684.  
  685. (autoload (quote update-directory-autoloads) "autoload" "\
  686. Run \\[update-file-autoloads] on each .el file in DIR." t nil)
  687.  
  688. (autoload (quote batch-update-autoloads) "autoload" "\
  689. Update the autoloads for the files or directories on the command line.
  690. Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads]
  691. on directories.  Must be used only with -batch, and kills Emacs on completion.
  692. Each file will be processed even if an error occurred previously.
  693. For example, invoke \"emacs -batch -f batch-update-autoloads *.el\"" nil nil)
  694.  
  695. ;;;***
  696.  
  697. ;;;### (autoloads (awk-mode) "awk-mode" "awk-mode.el" (11181 53242))
  698. ;;; Generated autoloads from awk-mode.el
  699.  
  700. (autoload (quote awk-mode) "awk-mode" "\
  701. Major mode for editing AWK code.
  702. This is much like C mode except for the syntax of comments.  It uses
  703. the same keymap as C mode and has the same variables for customizing
  704. indentation.  It has its own abbrev table and its own syntax table.
  705.  
  706. Turning on AWK mode calls the value of the variable `awk-mode-hook'
  707. with no args, if that value is non-nil." t nil)
  708.  
  709. ;;;***
  710.  
  711. ;;;### (autoloads (\`) "backquote" "backquote.el" (11285 49676))
  712. ;;; Generated autoloads from backquote.el
  713.  
  714. (autoload (quote \`) "backquote" "\
  715. (` FORM)  is a macro that expands to code to construct FORM.
  716. Note that this is very slow in interpreted code, but fast if you compile.
  717. FORM is one or more nested lists, which are `almost quoted':
  718. They are copied recursively, with non-lists used unchanged in the copy.
  719.  (` a b) == (list 'a 'b)  constructs a new list with two elements, `a' and `b'.
  720.  (` a (b c)) == (list 'a (list 'b 'c))  constructs two nested new lists.
  721.  
  722. However, certain special lists are not copied.  They specify substitution.
  723. Lists that look like (, EXP) are evaluated and the result is substituted.
  724.  (` a (, (+ x 5))) == (list 'a (+ x 5))
  725.  
  726. Elements of the form (,@ EXP) are evaluated and then all the elements
  727. of the result are substituted.  This result must be a list; it may
  728. be `nil'.
  729.  
  730. As an example, a simple macro `push' could be written:
  731.    (defmacro push (v l)
  732.         (` (setq (, l) (cons (,@ (list v l))))))
  733. or as
  734.    (defmacro push (v l)
  735.         (` (setq (, l) (cons (, v) (, l)))))
  736.  
  737. LIMITATIONS: \"dotted lists\" are not allowed in FORM.
  738. The ultimate cdr of each list scanned by ` must be `nil'.
  739. (This does not apply to constants inside expressions to be substituted.)
  740.  
  741. Substitution elements are not allowed as the cdr
  742. of a cons cell.  For example, (` (A . (, B))) does not work.
  743. Instead, write (` (A (,@ B))).
  744.  
  745. You cannot construct vectors, only lists.  Vectors are treated as
  746. constants.
  747.  
  748. BEWARE BEWARE BEWARE
  749. Inclusion of (,ATOM) rather than (, ATOM)
  750. or of (,@ATOM) rather than (,@ ATOM)
  751. will result in errors that will show up very late." nil t)
  752.  
  753. ;;;***
  754.  
  755. ;;;### (autoloads (bibtex-mode) "bibtex" "bibtex.el" (11287 29229))
  756. ;;; Generated autoloads from bibtex.el
  757.  
  758. (autoload (quote bibtex-mode) "bibtex" "\
  759. Major mode for editing bibtex files.
  760.  
  761. \\{bibtex-mode-map}
  762.  
  763. A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
  764.  
  765. The optional fields start with the string OPT, and thus ignored by BibTeX.
  766. The OPT string may be removed from a field with \\[bibtex-remove-OPT].
  767. \\[bibtex-kill-optional-field] kills the current optional field entirely.
  768. \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
  769. the current field.  \\[bibtex-empty-field] replaces the text of the current
  770. field with the default \"\".
  771.  
  772. The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
  773. double-quotes from entirely numerical fields, (ii) removes OPT from all
  774. non-empty optional fields, (iii) removes all empty optional fields, and (iv)
  775. checks that no non-optional fields are empty.
  776.  
  777. Use \\[bibtex-find-text] to position the dot at the end of the current field.
  778. Use \\[bibtex-next-field] to move to end of the next field.
  779.  
  780. The following may be of interest as well:
  781.  
  782.   Functions:
  783.     find-bibtex-duplicates
  784.     find-bibtex-entry-location
  785.     hide-bibtex-entry-bodies
  786.     sort-bibtex-entries
  787.     validate-bibtex-buffer
  788.  
  789.   Variables:
  790.     bibtex-clean-entry-zap-empty-opts
  791.     bibtex-entry-field-alist
  792.     bibtex-include-OPTannote
  793.     bibtex-include-OPTcrossref
  794.     bibtex-include-OPTkey
  795.     bibtex-maintain-sorted-entries
  796.     bibtex-mode-user-optional-fields
  797.  
  798. Fields:
  799.     address
  800.            Publisher's address
  801.     annote
  802.            Long annotation used for annotated bibliographies (begins sentence)
  803.     author
  804.            Name(s) of author(s), in BibTeX name format
  805.     booktitle
  806.            Book title when the thing being referenced isn't the whole book.
  807.            For book entries, the title field should be used instead.
  808.     chapter
  809.            Chapter number
  810.     crossref
  811.        The database key of the entry being cross referenced.
  812.     edition
  813.            Edition of a book (e.g., \"second\")
  814.     editor
  815.            Name(s) of editor(s), in BibTeX name format.
  816.            If there is also an author field, then the editor field should be
  817.            for the book or collection that the work appears in
  818.     howpublished
  819.             How something strange has been published (begins sentence)
  820.     institution
  821.            Sponsoring institution
  822.     journal
  823.            Journal name (macros are provided for many)
  824.     key
  825.            Alphabetizing and labeling key (needed when no author or editor)
  826.     month
  827.            Month (macros are provided)
  828.     note
  829.            To help the reader find a reference (begins sentence)
  830.     number
  831.            Number of a journal or technical report
  832.     organization
  833.            Organization (sponsoring a conference)
  834.     pages
  835.            Page number or numbers (use `--' to separate a range)
  836.     publisher
  837.            Publisher name
  838.     school
  839.            School name (for theses)
  840.     series
  841.            The name of a series or set of books.
  842.            An individual book will will also have it's own title
  843.     title
  844.            The title of the thing being referenced
  845.     type
  846.            Type of a technical report (e.g., \"Research Note\") to be used
  847.            instead of the default \"Technical Report\"
  848.     volume
  849.            Volume of a journal or multivolume work
  850.     year
  851.            Year---should contain only numerals
  852. ---------------------------------------------------------
  853. Entry to this mode calls the value of bibtex-mode-hook if that value is
  854. non-nil." t nil)
  855.  
  856. ;;;***
  857.  
  858. ;;;### (autoloads (blackbox) "blackbox" "blackbox.el" (11285 49689))
  859. ;;; Generated autoloads from blackbox.el
  860.  
  861. (autoload (quote blackbox) "blackbox" "\
  862. Play blackbox.  Optional prefix argument is the number of balls;
  863. the default is 4.
  864.  
  865. What is blackbox?
  866.  
  867. Blackbox is a game of hide and seek played on an 8 by 8 grid (the
  868. Blackbox).  Your opponent (Emacs, in this case) has hidden several
  869. balls (usually 4) within this box.  By shooting rays into the box and
  870. observing where they emerge it is possible to deduce the positions of
  871. the hidden balls.  The fewer rays you use to find the balls, the lower
  872. your score.
  873.  
  874. Overview of play:
  875.  
  876. \\<blackbox-mode-map>To play blackbox, type \\[blackbox].  An optional prefix argument
  877. specifies the number of balls to be hidden in the box; the default is
  878. four.
  879.  
  880. The cursor can be moved around the box with the standard cursor
  881. movement keys.
  882.  
  883. To shoot a ray, move the cursor to the edge of the box and press SPC.
  884. The result will be determined and the playfield updated.
  885.  
  886. You may place or remove balls in the box by moving the cursor into the
  887. box and pressing \\[bb-romp].
  888.  
  889. When you think the configuration of balls you have placed is correct,
  890. press \\[bb-done].  You will be informed whether you are correct or
  891. not, and be given your score.  Your score is the number of letters and
  892. numbers around the outside of the box plus five for each incorrectly
  893. placed ball.  If you placed any balls incorrectly, they will be
  894. indicated with `x', and their actual positions indicated with `o'.
  895.  
  896. Details:
  897.  
  898. There are three possible outcomes for each ray you send into the box:
  899.  
  900.     Detour: the ray is deflected and emerges somewhere other than
  901.         where you sent it in.  On the playfield, detours are
  902.         denoted by matching pairs of numbers -- one where the
  903.         ray went in, and the other where it came out.
  904.  
  905.     Reflection: the ray is reflected and emerges in the same place
  906.         it was sent in.  On the playfield, reflections are
  907.         denoted by the letter `R'.
  908.  
  909.     Hit:    the ray strikes a ball directly and is absorbed.  It does
  910.         not emerge from the box.  On the playfield, hits are
  911.         denoted by the letter `H'.
  912.  
  913. The rules for how balls deflect rays are simple and are best shown by
  914. example.
  915.  
  916. As a ray approaches a ball it is deflected ninety degrees.  Rays can
  917. be deflected multiple times.  In the diagrams below, the dashes
  918. represent empty box locations and the letter `O' represents a ball.
  919. The entrance and exit points of each ray are marked with numbers as
  920. described under \"Detour\" above.  Note that the entrance and exit
  921. points are always interchangeable.  `*' denotes the path taken by the
  922. ray.
  923.  
  924. Note carefully the relative positions of the ball and the ninety
  925. degree deflection it causes.
  926.  
  927.     1                                            
  928.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  929.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  930. 1 * * - - - - - -         - - - - - - - -         - O - - - - O -       
  931.   - - O - - - - -         - - O - - - - -         - - * * * * - -
  932.   - - - - - - - -         - - - * * * * * 2     3 * * * - - * - -
  933.   - - - - - - - -         - - - * - - - -         - - - O - * - -      
  934.   - - - - - - - -         - - - * - - - -         - - - - * * - -       
  935.   - - - - - - - -         - - - * - - - -         - - - - * - O -       
  936.                                 2                         3
  937.  
  938. As mentioned above, a reflection occurs when a ray emerges from the same point
  939. it was sent in.  This can happen in several ways:
  940.  
  941.                                                                            
  942.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  943.   - - - - O - - -         - - O - O - - -          - - - - - - - -
  944. R * * * * - - - -         - - - * - - - -          O - - - - - - -
  945.   - - - - O - - -         - - - * - - - -        R - - - - - - - -
  946.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  947.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  948.   - - - - - - - -       R * * * * - - - -          - - - - - - - -
  949.   - - - - - - - -         - - - - O - - -          - - - - - - - -
  950.  
  951. In the first example, the ray is deflected downwards by the upper
  952. ball, then left by the lower ball, and finally retraces its path to
  953. its point of origin.  The second example is similar.  The third
  954. example is a bit anomalous but can be rationalized by realizing the
  955. ray never gets a chance to get into the box.  Alternatively, the ray
  956. can be thought of as being deflected downwards and immediately
  957. emerging from the box.
  958.  
  959. A hit occurs when a ray runs straight into a ball:
  960.  
  961.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  962.   - - - - - - - -         - - - - - - - -          - - - - O - - -
  963.   - - - - - - - -         - - - - O - - -        H * * * * - - - -
  964.   - - - - - - - -       H * * * * O - - -          - - - * - - - -
  965.   - - - - - - - -         - - - - O - - -          - - - O - - - -
  966. H * * * O - - - -         - - - - - - - -          - - - - - - - -
  967.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  968.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  969.  
  970. Be sure to compare the second example of a hit with the first example of
  971. a reflection." t nil)
  972.  
  973. ;;;***
  974.  
  975. ;;;### (autoloads (batch-byte-compile display-call-tree byte-compile compile-defun byte-compile-file byte-recompile-directory) "bytecomp" "bytecomp.el" (11295 23399))
  976. ;;; Generated autoloads from bytecomp.el
  977.  
  978. (autoload (quote byte-recompile-directory) "bytecomp" "\
  979. Recompile every `.el' file in DIRECTORY that needs recompilation.
  980. This is if a `.elc' file exists but is older than the `.el' file.
  981.  
  982. If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
  983. But a prefix argument (optional second arg) means ask user,
  984. for each such `.el' file, whether to compile it.  Prefix argument 0 means
  985. don't ask and compile the file anyway." t nil)
  986.  
  987. (autoload (quote byte-compile-file) "bytecomp" "\
  988. Compile a file of Lisp code named FILENAME into a file of byte code.
  989. The output file's name is made by appending `c' to the end of FILENAME.
  990. With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
  991.  
  992. (autoload (quote compile-defun) "bytecomp" "\
  993. Compile and evaluate the current top-level form.
  994. Print the result in the minibuffer.
  995. With argument, insert value in current buffer after the form." t nil)
  996.  
  997. (autoload (quote byte-compile) "bytecomp" "\
  998. If FORM is a symbol, byte-compile its function definition.
  999. If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
  1000.  
  1001. (autoload (quote display-call-tree) "bytecomp" "\
  1002. Display a call graph of a specified file.
  1003. This lists which functions have been called, what functions called
  1004. them, and what functions they call.  The list includes all functions
  1005. whose definitions have been compiled in this Emacs session, as well as
  1006. all functions called by those functions.
  1007.  
  1008. The call graph does not include macros, inline functions, or
  1009. primitives that the byte-code interpreter knows about directly (eq,
  1010. cons, etc.).
  1011.  
  1012. The call tree also lists those functions which are not known to be called
  1013. (that is, to which no calls have been compiled), and which cannot be
  1014. invoked interactively." t nil)
  1015.  
  1016. (autoload (quote batch-byte-compile) "bytecomp" "\
  1017. Run `byte-compile-file' on the files remaining on the command line.
  1018. Use this from the command line, with `-batch';
  1019. it won't work in an interactive Emacs.
  1020. Each file is processed even if an error occurred previously.
  1021. For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
  1022.  
  1023. ;;;***
  1024.  
  1025. ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar.el" (11292 39079))
  1026. ;;; Generated autoloads from calendar.el
  1027.  
  1028. (defvar view-diary-entries-initially nil "\
  1029. *If t, the diary entries for the current date will be displayed on entry.
  1030. The diary is displayed in another window when the calendar is first displayed,
  1031. if the current date is visible.  The number of days of diary entries displayed
  1032. is governed by the variable `number-of-diary-entries'.")
  1033.  
  1034. (defvar number-of-diary-entries 1 "\
  1035. *Specifies how many days of diary entries are to be displayed initially.
  1036. This variable affects the diary display when the command M-x diary is used,
  1037. or if the value of the variable `view-diary-entries-initially' is t.  For
  1038. example, if the default value 1 is used, then only the current day's diary
  1039. entries will be displayed.  If the value 2 is used, then both the current
  1040. day's and the next day's entries will be displayed.  The value can also be
  1041. a vector such as [0 2 2 2 2 4 1]; this value will cause no diary entries to
  1042. be displayed on Sunday, the current date's and the next day's diary entries
  1043. to be displayed Monday through Thursday, Friday through Monday's entries to
  1044. be displayed on Friday, and only Saturday's entries to be displayed on
  1045. Saturday.  This variable does not affect the diary display with the `d'
  1046. command from the calendar; in that case, the prefix argument controls the
  1047. number of days of diary entries displayed.")
  1048.  
  1049. (defvar mark-diary-entries-in-calendar nil "\
  1050. *If t, dates with diary entries will be marked in the calendar window.
  1051. The marking symbol is specified by the variable `diary-entry-marker'.")
  1052.  
  1053. (defvar diary-entry-marker "+" "\
  1054. *The symbol used to mark dates that have diary entries.")
  1055.  
  1056. (defvar view-calendar-holidays-initially nil "\
  1057. *If t, the holidays for the current three month period will be displayed
  1058. on entry.  The holidays are displayed in another window when the calendar is
  1059. first displayed.")
  1060.  
  1061. (defvar mark-holidays-in-calendar nil "\
  1062. *If t, dates of holidays will be marked in the calendar window.
  1063. The marking symbol is specified by the variable `calendar-holiday-marker'.")
  1064.  
  1065. (defvar calendar-holiday-marker "*" "\
  1066. *The symbol used to mark notable dates in the calendar.")
  1067.  
  1068. (defvar all-hebrew-calendar-holidays nil "\
  1069. *If nil, the holidays from the Hebrew calendar that are shown will
  1070. include only those days of such major interest as to appear on secular
  1071. calendars.  If t, the holidays shown in the calendar will include all
  1072. special days that would be shown on a complete Hebrew calendar.")
  1073.  
  1074. (defvar all-christian-calendar-holidays nil "\
  1075. *If nil, the holidays from the Christian calendar that are shown will
  1076. include only those days of such major interest as to appear on secular
  1077. calendars.  If t, the holidays shown in the calendar will include all
  1078. special days that would be shown on a complete Christian calendar.")
  1079.  
  1080. (defvar all-islamic-calendar-holidays nil "\
  1081. *If nil, the holidays from the Islamic calendar that are shown will
  1082. include only those days of such major interest as to appear on secular
  1083. calendars.  If t, the holidays shown in the calendar will include all
  1084. special days that would be shown on a complete Islamic calendar.")
  1085.  
  1086. (defvar calendar-load-hook nil "\
  1087. *List of functions to be called after the calendar is first loaded.
  1088. This is the place to add key bindings to calendar-mode-map.")
  1089.  
  1090. (defvar initial-calendar-window-hook nil "\
  1091. *List of functions to be called when the calendar window is first opened.
  1092. The functions invoked are called after the calendar window is opened, but
  1093. once opened is never called again.  Leaving the calendar with the `q' command
  1094. and reentering it will cause these functions to be called again.")
  1095.  
  1096. (defvar today-visible-calendar-hook nil "\
  1097. *List of functions called whenever the current date is visible.
  1098. This can be used, for example, to replace today's date with asterisks; a
  1099. function `calendar-star-date' is included for this purpose:
  1100.     (setq today-visible-calendar-hook 'calendar-star-date)
  1101. It could also be used to mark the current date with `='; a function is also
  1102. provided for this:
  1103.     (setq today-visible-calendar-hook 'calendar-mark-today)
  1104.  
  1105. The corresponding variable `today-invisible-calendar-hook' is the list of
  1106. functions called when the calendar function was called when the current
  1107. date is not visible in the window.
  1108.  
  1109. Other than the use of the provided functions, the changing of any
  1110. characters in the calendar buffer by the hooks may cause the failure of the
  1111. functions that move by days and weeks.")
  1112.  
  1113. (defvar today-invisible-calendar-hook nil "\
  1114. *List of functions called whenever the current date is not visible.
  1115.  
  1116. The corresponding variable `today-visible-calendar-hook' is the list of
  1117. functions called when the calendar function was called when the current
  1118. date is visible in the window.
  1119.  
  1120. Other than the use of the provided functions, the changing of any
  1121. characters in the calendar buffer by the hooks may cause the failure of the
  1122. functions that move by days and weeks.")
  1123.  
  1124. (defvar diary-file "~/diary" "\
  1125. *Name of the file in which one's personal diary of dates is kept.
  1126.  
  1127. The file's entries are lines in any of the forms
  1128.  
  1129.             MONTH/DAY
  1130.             MONTH/DAY/YEAR
  1131.             MONTHNAME DAY
  1132.             MONTHNAME DAY, YEAR
  1133.             DAYNAME
  1134.  
  1135. at the beginning of the line; the remainder of the line is the diary entry
  1136. string for that date.  MONTH and DAY are one or two digit numbers, YEAR is
  1137. a number and may be written in full or abbreviated to the final two digits.
  1138. If the date does not contain a year, it is generic and applies to any year.
  1139. DAYNAME entries apply to any date on which is on that day of the week.
  1140. MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
  1141. characters (with or without a period), capitalized or not.  Any of DAY,
  1142. MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
  1143. respectively.
  1144.  
  1145. The European style (in which the day precedes the month) can be used
  1146. instead, if you execute `european-calendar' when in the calendar, or set
  1147. `european-calendar-style' to t in your .emacs file.  The European forms are
  1148.  
  1149.             DAY/MONTH
  1150.             DAY/MONTH/YEAR
  1151.             DAY MONTHNAME
  1152.             DAY MONTHNAME YEAR
  1153.             DAYNAME
  1154.  
  1155. To revert to the default American style from the European style, execute
  1156. `american-calendar' in the calendar.
  1157.  
  1158. A diary entry can be preceded by a diary-nonmarking-symbol (ordinarily `&')
  1159. to make that entry nonmarking--that is, it will not be marked on dates in
  1160. the calendar window but will appear in a diary window.
  1161.  
  1162. Multiline diary entries are made by indenting lines after the first with
  1163. either a TAB or one or more spaces.
  1164.  
  1165. Lines not in one the above formats are ignored.  Here are some sample diary
  1166. entries (in the default American style):
  1167.  
  1168.      12/22/1988 Twentieth wedding anniversary!!
  1169.      &1/1. Happy New Year!
  1170.      10/22 Ruth's birthday.
  1171.      21: Payday
  1172.      Tuesday--weekly meeting with grad students at 10am
  1173.               Supowit, Shen, Bitner, and Kapoor to attend.
  1174.      1/13/89 Friday the thirteenth!!
  1175.      &thu 4pm squash game with Lloyd.
  1176.      mar 16 Dad's birthday
  1177.      April 15, 1989 Income tax due.
  1178.      &* 15 time cards due.
  1179.  
  1180. If the first line of a diary entry consists only of the date or day name with
  1181. no trailing blanks or punctuation, then that line will not be displayed in the
  1182. diary window; only the continuation lines will be shown.  For example, the
  1183. single diary entry
  1184.  
  1185.      02/11/1989
  1186.       Bill Blattner visits Princeton today
  1187.       2pm Cognitive Studies Committee meeting
  1188.       2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
  1189.       4:00pm Jamie Tappenden
  1190.       7:30pm Dinner at George and Ed's for Alan Ryan
  1191.       7:30-10:00pm dance at Stewart Country Day School
  1192.  
  1193. will appear in the diary window without the date line at the beginning.  This
  1194. facility allows the diary window to look neater, but can cause confusion if
  1195. used with more than one day's entries displayed.
  1196.  
  1197. Diary entries can be based on Lisp sexps.  For example, the diary entry
  1198.  
  1199.       %%(diary-block 11 1 1990 11 10 1990) Vacation
  1200.  
  1201. causes the diary entry \"Vacation\" to appear from November 1 through November
  1202. 10, 1990.  Other functions available are `diary-float', `diary-anniversary',
  1203. `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
  1204. `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
  1205. `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
  1206. `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
  1207. `diary-sabbath-candles'.  See the documentation for the function
  1208. `list-sexp-diary-entries' for more details.
  1209.  
  1210. Diary entries based on the Hebrew and/or the Islamic calendar are also
  1211. possible, but because these are somewhat slow, they are ignored
  1212. unless you set the `nongregorian-diary-listing-hook' and the
  1213. `nongregorian-diary-marking-hook' appropriately.  See the documentation
  1214. for these functions for details.
  1215.  
  1216. Diary files can contain directives to include the contents of other files; for
  1217. details, see the documentation for the variable `list-diary-entries-hook'.")
  1218.  
  1219. (defvar diary-nonmarking-symbol "&" "\
  1220. *The symbol used to indicate that a diary entry is not to be marked in the
  1221. calendar window.")
  1222.  
  1223. (defvar hebrew-diary-entry-symbol "H" "\
  1224. *The symbol used to indicate that a diary entry is according to the
  1225. Hebrew calendar.")
  1226.  
  1227. (defvar islamic-diary-entry-symbol "I" "\
  1228. *The symbol used to indicate that a diary entry is according to the
  1229. Islamic calendar.")
  1230.  
  1231. (defvar diary-include-string "#include" "\
  1232. *The string used to indicate the inclusion of another file of diary entries
  1233. in diary-file.  See the documentation for the function
  1234. `include-other-diary-files'.")
  1235.  
  1236. (defvar sexp-diary-entry-symbol "%%" "\
  1237. *The string used to indicate a sexp diary entry in diary-file.
  1238. See the documentation for the function `list-sexp-diary-entries'.")
  1239.  
  1240. (defvar abbreviated-calendar-year t "\
  1241. *Interpret a two-digit year DD in a diary entry as being either 19DD or
  1242. 20DD, as appropriate, for the Gregorian calendar; similarly for the Hebrew and
  1243. Islamic calendars.  If this variable is nil, years must be written in full.")
  1244.  
  1245. (defvar european-calendar-style nil "\
  1246. *Use the European style of dates in the diary and in any displays.  If this
  1247. variable is t, a date 1/2/1990 would be interpreted as February 1, 1990.
  1248. The accepted European date styles are
  1249.  
  1250.             DAY/MONTH
  1251.             DAY/MONTH/YEAR
  1252.             DAY MONTHNAME
  1253.             DAY MONTHNAME YEAR
  1254.             DAYNAME
  1255.  
  1256. Names can be capitalized or not, written in full, or abbreviated to three
  1257. characters with or without a period.")
  1258.  
  1259. (defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\
  1260. *List of pseudo-patterns describing the American patterns of date used.
  1261. See the documentation of diary-date-forms for an explanation.")
  1262.  
  1263. (defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\
  1264. *List of pseudo-patterns describing the European patterns of date used.
  1265. See the documentation of diary-date-forms for an explanation.")
  1266.  
  1267. (defvar diary-date-forms (if european-calendar-style european-date-diary-pattern american-date-diary-pattern) "\
  1268. *List of pseudo-patterns describing the forms of date used in the diary.
  1269. The patterns on the list must be MUTUALLY EXCLUSIVE and must should not match
  1270. any portion of the diary entry itself, just the date component.
  1271.  
  1272. A pseudo-pattern is a list of regular expressions and the keywords `month',
  1273. `day', `year', `monthname', and `dayname'.  The keyword `monthname' will
  1274. match the name of the month, capitalized or not, or its three-letter
  1275. abbreviation, followed by a period or not; it will also match `*'.
  1276. Similarly, `dayname' will match the name of the day, capitalized or not, or
  1277. its three-letter abbreviation, followed by a period or not.  The keywords
  1278. `month', `day', and `year' will match those numerical values, preceded by
  1279. arbitrarily many zeros; they will also match `*'.
  1280.  
  1281. The matching of the diary entries with the date forms is done with the
  1282. standard syntax table from Fundamental mode, but with the `*' changed so
  1283. that it is a word constituent.
  1284.  
  1285. If, to be mutually exclusive, a pseudo-pattern must match a portion of the
  1286. diary entry itself, the first element of the pattern MUST be `backup'.  This
  1287. directive causes the date recognizer to back up to the beginning of the
  1288. current word of the diary entry, so in no case can the pattern match more than
  1289. a portion of the first word of the diary entry.")
  1290.  
  1291. (defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\
  1292. *The pseudo-pattern that governs the way a Gregorian date is formatted
  1293. in the European style.  See the documentation of calendar-date-display-forms
  1294. for an explanation.")
  1295.  
  1296. (defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\
  1297. *The pseudo-pattern that governs the way a Gregorian date is formatted
  1298. in the American style.  See the documentation of calendar-date-display-forms
  1299. for an explanation.")
  1300.  
  1301. (defvar calendar-date-display-form (if european-calendar-style european-calendar-display-form american-calendar-display-form) "\
  1302. *The pseudo-pattern that governs the way a Gregorian date is formatted
  1303. as a string by the function `calendar-date-string'.  A pseudo-pattern is a
  1304. list of expressions that can involve the keywords `month', `day', and
  1305. `year', all numbers in string form, and `monthname' and `dayname', both
  1306. alphabetic strings.  For example, the ISO standard would use the pseudo-
  1307. pattern
  1308.  
  1309.        '(year \"-\" month \"-\" day)
  1310.  
  1311. while a typical American form would be
  1312.  
  1313.        '(month \"/\" day \"/\" (substring year -2))
  1314.  
  1315. and
  1316.  
  1317.        '((format \"%9s, %9s %2s, %4s\" dayname monthname day year))
  1318.  
  1319. would give the usual American style in fixed-length fields.
  1320.  
  1321. See the documentation of the function `calendar-date-string'.")
  1322.  
  1323. (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\
  1324. *The pseudo-pattern that governs the way a time of day is formatted.
  1325.  
  1326. A pseudo-pattern is a list of expressions that can involve the keywords
  1327. `12-hours', `24-hours', and `minutes',  all numbers in string form,
  1328. and `am-pm' and `time-zone',  both alphabetic strings.
  1329.  
  1330. For example, the form
  1331.  
  1332.   '(24-hours \":\" minutes
  1333.     (if time-zone \" (\") time-zone (if time-zone \")\"))
  1334.  
  1335. would give military-style times like `21:07 (UT)'.")
  1336.  
  1337. (defvar calendar-latitude nil "\
  1338. *Latitude of `calendar-location-name' in degrees, + north, - south.
  1339. For example, 40.7 for New York City.")
  1340.  
  1341. (defvar calendar-longitude nil "\
  1342. *Longitude of `calendar-location-name' in degrees, + east, - west.
  1343. For example, -74.0 for New York City.")
  1344.  
  1345. (defvar calendar-location-name (quote (let ((float-output-format "%.1f")) (format "%s%s, %s%s" (abs calendar-latitude) (if (> calendar-latitude 0) "N" "S") (abs calendar-longitude) (if (> calendar-longitude 0) "E" "W")))) "\
  1346. *An expression that evaluates to the name of the location at
  1347. `calendar-longitude', calendar-latitude'.  Default value is just the latitude,
  1348. longitude pair.")
  1349.  
  1350. (defvar print-diary-entries-hook (quote lpr-buffer) "\
  1351. *List of functions to be called after a temporary buffer is prepared with
  1352. the diary entries currently visible in the diary buffer.  The default just
  1353. does the printing.  Other uses might include, for example, rearranging the
  1354. lines into order by day and time, saving the buffer instead of deleting it, or
  1355. changing the function used to do the printing.")
  1356.  
  1357. (defvar list-diary-entries-hook nil "\
  1358. *List of functions to be called after the diary file is culled for
  1359. relevant entries. It is to be used for diary entries that are not found in
  1360. the diary file.
  1361.  
  1362. A function `include-other-diary-files' is provided for use as the value of
  1363. this hook.  This function enables you to use shared diary files together
  1364. with your own.  The files included are specified in the diary-file by lines
  1365. of the form
  1366.  
  1367.         #include \"filename\"
  1368.  
  1369. This is recursive; that is, #include directives in files thus included are
  1370. obeyed.  You can change the \"#include\" to some other string by changing
  1371. the variable `diary-include-string'.  When you use `include-other-diary-files'
  1372. as part of the list-diary-entries-hook, you will probably also want to use the
  1373. function `mark-included-diary-files' as part of the mark-diary-entries-hook.
  1374.  
  1375. For example, you could use
  1376.  
  1377.      (setq list-diary-entries-hook
  1378.        '(include-other-diary-files sort-diary-entries))
  1379.      (setq diary-display-hook 'fancy-diary-display)
  1380.  
  1381. in your .emacs file to cause the fancy diary buffer to be displayed with
  1382. diary entries from various included files, each day's entries sorted into
  1383. lexicographic order.")
  1384.  
  1385. (defvar diary-display-hook (quote simple-diary-display) "\
  1386. *List of functions that handle the display of the diary.
  1387.  
  1388. Ordinarily, this just displays the diary buffer (with holidays indicated in
  1389. the mode line), if there are any relevant entries.  At the time these
  1390. functions are called, the variable `diary-entries-list' is a list, in order
  1391. by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
  1392. STRING), where string is the diary entry for the given date.  This can be
  1393. used, for example, to handle appointment notification, prepare a different
  1394. buffer for display (perhaps combined with holidays), or produce hard copy
  1395. output.
  1396.  
  1397. A function `fancy-diary-display' is provided as an alternative
  1398. choice for this hook; this function prepares a special noneditable diary
  1399. buffer with the relevant diary entries that has neat day-by-day arrangement
  1400. with headings.  The fancy diary buffer will show the holidays unless the
  1401. variable `holidays-in-diary-buffer' is set to nil.  Ordinarily, the fancy
  1402. diary buffer will not show days for which there are no diary entries, even
  1403. if that day is a holiday; if you want such days to be shown in the fancy
  1404. diary buffer, set the variable `diary-list-include-blanks' to t.")
  1405.  
  1406. (defvar nongregorian-diary-listing-hook nil "\
  1407. *List of functions to be called for the diary file and included files as
  1408. they are processed for listing diary entries.  You can use any or all of
  1409. `list-hebrew-diary-entries' and `list-islamic-diary-entries'.  The
  1410. documentation for these functions describes the style of such diary entries.")
  1411.  
  1412. (defvar mark-diary-entries-hook nil "\
  1413. *List of functions called after marking diary entries in the calendar.
  1414.  
  1415. A function `mark-included-diary-files' is also provided for use as the
  1416. mark-diary-entries-hook; it enables you to use shared diary files together
  1417. with your own.  The files included are specified in the diary-file by lines
  1418. of the form
  1419.         #include \"filename\"
  1420. This is recursive; that is, #include directives in files thus included are
  1421. obeyed.  You can change the \"#include\" to some other string by changing the
  1422. variable `diary-include-string'.  When you use `mark-included-diary-files' as
  1423. part of the mark-diary-entries-hook, you will probably also want to use the
  1424. function `include-other-diary-files' as part of the list-diary-entries-hook.")
  1425.  
  1426. (defvar nongregorian-diary-marking-hook nil "\
  1427. *List of functions to be called as the diary file and included files are
  1428. processed for marking diary entries.  You can use either or both of
  1429. mark-hebrew-diary-entries and mark-islamic-diary-entries.  The documentation
  1430. for these functions describes the style of such diary entries.")
  1431.  
  1432. (defvar diary-list-include-blanks nil "\
  1433. *If nil, do not include days with no diary entry in the list of diary
  1434. entries.  Such days will then not be shown in the the fancy diary buffer,
  1435. even if they are holidays.")
  1436.  
  1437. (defvar holidays-in-diary-buffer t "\
  1438. *If t, the holidays will be indicated in the mode line of the diary buffer
  1439. (or in the fancy diary buffer next to the date).  This slows down the diary
  1440. functions somewhat; setting it to nil will make the diary display faster.")
  1441.  
  1442. (defvar general-holidays (quote ((fixed 1 1 "New Year's Day") (float 1 1 3 "Martin Luther King Day") (fixed 2 2 "Ground Hog Day") (fixed 2 14 "Valentine's Day") (float 2 1 3 "President's Day") (fixed 3 17 "St. Patrick's Day") (fixed 4 1 "April Fool's Day") (float 5 0 2 "Mother's Day") (float 5 1 -1 "Memorial Day") (fixed 6 14 "Flag Day") (float 6 0 3 "Father's Day") (fixed 7 4 "Independence Day") (float 9 1 1 "Labor Day") (float 10 1 2 "Columbus Day") (fixed 10 31 "Halloween") (fixed 11 11 "Veteran's Day") (float 11 4 4 "Thanksgiving"))) "\
  1443. *General holidays.  Default value is for the United States.  See the
  1444. documentation for `calendar-holidays' for details.")
  1445.  
  1446. (defvar local-holidays nil "\
  1447. *Local holidays.
  1448. See the documentation for `calendar-holidays' for details.")
  1449.  
  1450. (defvar other-holidays nil "\
  1451. *User defined holidays.
  1452. See the documentation for `calendar-holidays' for details.")
  1453.  
  1454. (defvar hebrew-holidays (quote ((rosh-hashanah-etc) (if all-hebrew-calendar-holidays (julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)")) (if all-hebrew-calendar-holidays (hanukkah) (hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (hebrew 11 15 "Tu B'Shevat")) (if all-hebrew-calendar-holidays (hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah")) (passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (tisha-b-av-etc)))) "\
  1455. *Jewish holidays.
  1456. See the documentation for `calendar-holidays' for details.")
  1457.  
  1458. (defvar christian-holidays (quote ((if all-christian-calendar-holidays (fixed 1 6 "Epiphany")) (easter-etc) (if all-christian-calendar-holidays (greek-orthodox-easter)) (if all-christian-calendar-holidays (fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (advent)) (fixed 12 25 "Christmas") (if all-christian-calendar-holidays (julian 12 25 "Eastern Orthodox Christmas")))) "\
  1459. *Christian holidays.
  1460. See the documentation for `calendar-holidays' for details.")
  1461.  
  1462. (defvar islamic-holidays (quote ((islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (islamic 8 15 "Shab-e-Bara't")) (islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (islamic 12 10 "Id-al-Adha")))) "\
  1463. *Islamic holidays.
  1464. See the documentation for `calendar-holidays' for details.")
  1465.  
  1466. (defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (sexp (eval calendar-daylight-savings-starts) "Daylight Savings Time Begins") (sexp (eval calendar-daylight-savings-ends) "Daylight Savings Time Ends"))) "\
  1467. *Sun-related holidays.
  1468. See the documentation for `calendar-holidays' for details.")
  1469.  
  1470. (defvar calendar-holidays (quote (append general-holidays local-holidays other-holidays christian-holidays hebrew-holidays islamic-holidays solar-holidays)) "\
  1471. *List of notable days for the command M-x holidays.
  1472.  
  1473. Additional holidays are easy to add to the list, just put them in the list
  1474. `other-holidays' in your .emacs file.  Similarly, by setting any of
  1475. `general-holidays', `local-holidays' `christian-holidays', `hebrew-holidays',
  1476. `islamic-holidays', or `solar-holidays' to nil in your .emacs file, you can
  1477. eliminate unwanted categories of holidays.  The intention is that (in the US)
  1478. `local-holidays' be set in site-init.el and `other-holidays' be set by the
  1479. user.
  1480.  
  1481. The possible holiday-forms are as follows:
  1482.  
  1483.     (fixed MONTH DAY STRING)   a fixed date on the Gregorian calendar
  1484.     (float MONTH DAYNAME K STRING) the Kth DAYNAME in MONTH on the Gregorian
  1485.                                calendar (0 for Sunday, etc.); K<0 means
  1486.                                count back from the end of the month
  1487.     (hebrew MONTH DAY STRING)  a fixed date on the Hebrew calendar
  1488.     (islamic MONTH DAY STRING) a fixed date on the Islamic calendar
  1489.     (julian MONTH DAY STRING)  a fixed date on the Julian calendar
  1490.     (sexp SEXP STRING)         SEXP is a Gregorian-date-valued expression
  1491.                                in the variable `year'; if it evaluates to
  1492.                                a visible date, that's the holiday; if it
  1493.                                evaluates to nil, there's no holiday
  1494.     (if BOOLEAN HOLIDAY-FORM &optional HOLIDAY-FORM) gives a choice between
  1495.                                two holidays based on the value of BOOLEAN
  1496.     (FUNCTION &optional ARGS)  dates requiring special computation; ARGS,
  1497.                                if any, are passed in a list to the function
  1498.                                `calendar-holiday-function-FUNCTION'
  1499.  
  1500. For example, to add Bastille Day, celebrated in France on July 14, add
  1501.  
  1502.      (fixed 7 14 \"Bastille Day\")
  1503.  
  1504. to the list.  To add Hurricane Supplication Day, celebrated in the Virgin
  1505. Islands on the fourth Monday in August, add
  1506.  
  1507.      (float 8 1 4 \"Hurricane Supplication Day\")
  1508.  
  1509. to the list (the last Monday would be specified with `-1' instead of `4').
  1510. To add the last day of Hanukkah to the list, use
  1511.  
  1512.      (hebrew 10 2 \"Last day of Hanukkah\")
  1513.  
  1514. since the Hebrew months are numbered with 1 starting from Nisan, while to
  1515. add the Islamic feast celebrating Mohammed's birthday use
  1516.  
  1517.      (islamic 3 12 \"Mohammed's Birthday\")
  1518.  
  1519. since the Islamic months are numbered from 1 starting with Muharram.  To
  1520. add Thomas Jefferson's birthday, April 2, 1743 (Julian), use
  1521.  
  1522.      (julian 4 2 \"Jefferson's Birthday\")
  1523.  
  1524. To include a holiday conditionally, use the if or the sexp form.  For example,
  1525. to include American presidential elections, which occur on the first Tuesday
  1526. after the first Monday in November of years divisible by 4, add
  1527.  
  1528.      (sexp (if (zerop (% year 4))
  1529.                (calendar-gregorian-from-absolute
  1530.                   (1+ (calendar-dayname-on-or-before
  1531.                         1 (+ 6 (calendar-absolute-from-gregorian
  1532.                                  (list 11 1 year)))))))
  1533.             \"US Presidential Election\")
  1534.  
  1535. or
  1536.  
  1537.      (if (zerop (% displayed-year 4))
  1538.          (fixed 11
  1539.                 (extract-calendar-day
  1540.                  (calendar-gregorian-from-absolute
  1541.                   (1+ (calendar-dayname-on-or-before
  1542.                        1 (+ 6 (calendar-absolute-from-gregorian
  1543.                                (list 11 1 displayed-year)))))))
  1544.                 \"US Presidential Election\"))
  1545.  
  1546. to the list.  To include the phases of the moon, add
  1547.  
  1548.      (lunar-phases)
  1549.  
  1550. to the holiday list, where `calendar-holiday-function-lunar-phases' is an
  1551. Emacs-Lisp function that you've written to return a (possibly empty) list of
  1552. the relevant VISIBLE dates with descriptive strings such as
  1553.  
  1554.      (((2 6 1989) \"New Moon\") ((2 12 1989) \"First Quarter Moon\") ... )
  1555.  
  1556. The fixed, float, hebrew, islamic, julian, sexp, and if forms are implemented
  1557. by the inclusion of the functions `calendar-holiday-function-fixed',
  1558. `calendar-holiday-function-float', `calendar-holiday-function-hebrew',
  1559. `calendar-holiday-function-islamic', `calendar-holiday-function-julian',
  1560. `calendar-holiday-function-sexp', and `calendar-holiday-function-if',
  1561. respectively.")
  1562.  
  1563. (autoload (quote calendar) "calendar" "\
  1564. Display a three-month calendar in another window.
  1565. The three months appear side by side, with the current month in the middle
  1566. surrounded by the previous and next months.  The cursor is put on today's date.
  1567.  
  1568. If called with an optional prefix argument, prompts for month and year.
  1569.  
  1570. This function is suitable for execution in a .emacs file; appropriate setting
  1571. of the variable `view-diary-entries-initially' will cause the diary entries for
  1572. the current date to be displayed in another window.  The value of the variable
  1573. `number-of-diary-entries' controls the number of days of diary entries
  1574. displayed upon initial display of the calendar.
  1575.  
  1576. An optional prefix argument ARG causes the calendar displayed to be ARG
  1577. months in the future if ARG is positive or in the past if ARG is negative;
  1578. in this case the cursor goes on the first day of the month.
  1579.  
  1580. Once in the calendar window, future or past months can be moved into view.
  1581. Arbitrary months can be displayed, or the calendar can be scrolled forward
  1582. or backward.
  1583.  
  1584. The cursor can be moved forward or backward by one day, one week, one month,
  1585. or one year.  All of these commands take prefix arguments which, when negative,
  1586. cause movement in the opposite direction.  For convenience, the digit keys
  1587. and the minus sign are automatically prefixes.  The window is replotted as
  1588. necessary to display the desired date.
  1589.  
  1590. Diary entries can be marked on the calendar or displayed in another window.
  1591.  
  1592. Use M-x describe-mode for details of the key bindings in the calendar window.
  1593.  
  1594. The Gregorian calendar is assumed.
  1595.  
  1596. After loading the calendar, the hooks given by the variable
  1597. `calendar-load-hook' are run.  This the place to add key bindings to the
  1598. calendar-mode-map.
  1599.  
  1600. After preparing the calendar window initially, the hooks given by the variable
  1601. `initial-calendar-window-hook' are run.
  1602.  
  1603. The hooks given by the variable `today-visible-calendar-hook' are run
  1604. everytime the calendar window gets scrolled, if the current date is visible
  1605. in the window.  If it is not visible, the hooks given by the variable
  1606. `today-invisible-calendar-hook' are run.  Thus, for example, setting
  1607. `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
  1608. to be replaced by asterisks to highlight it whenever it is in the window." t nil)
  1609.  
  1610. (autoload (quote list-yahrzeit-dates) "calendar" "\
  1611. List of Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to
  1612. END-YEAR.  When called interactively from the calendar window,
  1613. the date of death is taken from the cursor position." t nil)
  1614.  
  1615. ;;;***
  1616.  
  1617. ;;;### (autoloads (set-case-syntax set-case-syntax-pair set-case-syntax-delims describe-buffer-case-table) "case-table" "case-table.el" (11283 37570))
  1618. ;;; Generated autoloads from case-table.el
  1619.  
  1620. (autoload (quote describe-buffer-case-table) "case-table" "\
  1621. Describe the case table of the current buffer." t nil)
  1622.  
  1623. (autoload (quote set-case-syntax-delims) "case-table" "\
  1624. Make characters L and R a matching pair of non-case-converting delimiters.
  1625. This sets the entries for L and R in TABLE, which is a string
  1626. that will be used as the downcase part of a case table.
  1627. It also modifies `standard-syntax-table', and `text-mode-syntax-table' to
  1628. indicate left and right delimiters." nil nil)
  1629.  
  1630. (autoload (quote set-case-syntax-pair) "case-table" "\
  1631. Make characters UC and LC a pair of inter-case-converting letters.
  1632. This sets the entries for characters UC and LC in TABLE, which is a string
  1633. that will be used as the downcase part of a case table.
  1634. It also modifies `standard-syntax-table' and `text-mode-syntax-table'
  1635. to indicate an (uppercase, lowercase) pair of letters." nil nil)
  1636.  
  1637. (autoload (quote set-case-syntax) "case-table" "\
  1638. Make characters C case-invariant with syntax SYNTAX.
  1639. This sets the entries for character C in TABLE, which is a string
  1640. that will be used as the downcase part of a case table.
  1641. It also modifies `standard-syntax-table' and `text-mode-syntax-table'.
  1642. SYNTAX should be \" \", \"w\", \".\" or \"_\"." nil nil)
  1643.  
  1644. ;;;***
  1645.  
  1646. ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "chistory.el" (11196 27803))
  1647. ;;; Generated autoloads from chistory.el
  1648.  
  1649. (autoload (quote repeat-matching-complex-command) "chistory" "\
  1650. Edit and re-evaluate complex command with name matching PATTERN.
  1651. Matching occurrences are displayed, most recent first, until you select
  1652. a form for evaluation.  If PATTERN is empty (or nil), every form in the
  1653. command history is offered.  The form is placed in the minibuffer for
  1654. editing and the result is evaluated." t nil)
  1655.  
  1656. (autoload (quote list-command-history) "chistory" "\
  1657. List history of commands typed to minibuffer.
  1658. The number of commands listed is controlled by `list-command-history-max'.
  1659. Calls value of `list-command-history-filter' (if non-nil) on each history
  1660. element to judge if that element should be excluded from the list.
  1661.  
  1662. The buffer is left in Command History mode." t nil)
  1663.  
  1664. (autoload (quote command-history-mode) "chistory" "\
  1665. Major mode for examining commands from `command-history'.
  1666. The number of commands listed is controlled by `list-command-history-max'.
  1667. The command history is filtered by `list-command-history-filter' if non-nil.
  1668. Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
  1669.  
  1670. Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
  1671. and digits provide prefix arguments.  Tab does not indent.
  1672. \\{command-history-map}
  1673. Calls the value of `command-history-hook' if that is non-nil.
  1674. The Command History listing is recomputed each time this mode is invoked." t nil)
  1675.  
  1676. ;;;***
  1677.  
  1678. ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "cl-indent.el" (11285 49748))
  1679. ;;; Generated autoloads from cl-indent.el
  1680.  
  1681. (autoload (quote common-lisp-indent-function) "cl-indent" nil nil nil)
  1682.  
  1683. ;;;***
  1684.  
  1685. ;;;### (autoloads (make-comint) "comint" "comint.el" (11285 51131))
  1686. ;;; Generated autoloads from comint.el
  1687.  
  1688. (autoload (quote make-comint) "comint" "\
  1689. Make a comint process NAME in a buffer, running PROGRAM.
  1690. The name of the buffer is made by surrounding NAME with `*'s.
  1691. If there is already a running process in that buffer, it is not restarted.
  1692. Optional third arg STARTFILE is the name of a file to send the contents of to 
  1693. the process.  Any more args are arguments to PROGRAM." nil nil)
  1694.  
  1695. ;;;***
  1696.  
  1697. ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (11181 53258))
  1698. ;;; Generated autoloads from compare-w.el
  1699.  
  1700. (autoload (quote compare-windows) "compare-w" "\
  1701. Compare text in current window with text in next window.
  1702. Compares the text starting at point in each window,
  1703. moving over text in each one as far as they match.
  1704.  
  1705. A prefix arg means ignore changes in whitespace.
  1706. The variable `compare-windows-whitespace' controls how whitespace is skipped.
  1707. If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
  1708.  
  1709. ;;;***
  1710.  
  1711. ;;;### (autoloads (next-error grep compile) "compile" "compile.el" (11286 57626))
  1712. ;;; Generated autoloads from compile.el
  1713.  
  1714. (defvar compilation-mode-hook nil "\
  1715. *List of hook functions run by `compilation-mode' (see `run-hooks').")
  1716.  
  1717. (defconst compilation-window-height nil "\
  1718. *Number of lines in a compilation window.  If nil, use Emacs default.")
  1719.  
  1720. (defvar compilation-buffer-name-function nil "\
  1721. Function to compute the name of a compilation buffer.
  1722. The function receives one argument, the name of the major mode of the
  1723. compilation buffer.  It should return a string.
  1724. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  1725.  
  1726. (defvar compilation-finish-function nil "\
  1727. *Function to call when a compilation process finishes.
  1728. It is called with two arguments: the compilation buffer, and a string
  1729. describing how the process finished.")
  1730.  
  1731. (defvar compilation-search-path (quote (nil)) "\
  1732. *List of directories to search for source files named in error messages.
  1733. Elements should be directory names, not file names of directories.
  1734. nil as an element means to try the default directory.")
  1735.  
  1736. (autoload (quote compile) "compile" "\
  1737. Compile the program including the current buffer.  Default: run `make'.
  1738. Runs COMMAND, a shell command, in a separate process asynchronously
  1739. with output going to the buffer `*compilation*'.
  1740.  
  1741. You can then use the command \\[next-error] to find the next error message
  1742. and move to the source code that caused it.
  1743.  
  1744. To run more than one compilation at once, start one and rename the
  1745. `*compilation*' buffer to some other name with \\[rename-buffer].
  1746. Then start the next one.
  1747.  
  1748. The name used for the buffer is actually whatever is returned by
  1749. the function in `compilation-buffer-name-function', so you can set that
  1750. to a function that generates a unique name." t nil)
  1751.  
  1752. (autoload (quote grep) "compile" "\
  1753. Run grep, with user-specified args, and collect output in a buffer.
  1754. While grep runs asynchronously, you can use the \\[next-error] command
  1755. to find the text that grep hits refer to.
  1756.  
  1757. This command uses a special history list for its arguments, so you can
  1758. easily repeat a grep command." t nil)
  1759.  
  1760. (autoload (quote next-error) "compile" "\
  1761. Visit next compilation error message and corresponding source code.
  1762. This operates on the output from the \\[compile] command.
  1763. If all preparsed error messages have been processed,
  1764. the error message buffer is checked for new ones.
  1765.  
  1766. A prefix arg specifies how many error messages to move;
  1767. negative means move back to previous error messages.
  1768. Just C-u as a prefix means reparse the error message buffer
  1769. and start at the first error.
  1770.  
  1771. \\[next-error] normally applies to the most recent compilation started,
  1772. but as long as you are in the middle of parsing errors from one compilation
  1773. output buffer, you stay with that compilation output buffer.
  1774.  
  1775. Use \\[next-error] in a compilation output buffer to switch to
  1776. processing errors from that compilation.
  1777.  
  1778. See variables `compilation-parse-errors-function' and
  1779. `compilation-error-regexp-alist' for customization ideas." t nil)
  1780.  
  1781. (define-key ctl-x-map "`" (quote next-error))
  1782.  
  1783. ;;;***
  1784.  
  1785. ;;;### (autoloads (c++-mode) "cplus-md" "/home/fsf/rms/e19/lisp/cplus-md.el" (11296 5913))
  1786. ;;; Generated autoloads from /home/fsf/rms/e19/lisp/cplus-md.el
  1787.  
  1788. (autoload (quote c++-mode) "cplus-md" "\
  1789. Major mode for editing C++ code.  Very much like editing C code.
  1790. Expression and list commands understand all C++ brackets.
  1791. Tab at left margin indents for C++ code
  1792. Comments are delimited with /* ... */ {or with // ... <newline>}
  1793. Paragraphs are separated by blank lines only.
  1794. Delete converts tabs to spaces as it moves back.
  1795. \\{c++-mode-map}
  1796. Variables controlling indentation style:
  1797.  c-tab-always-indent
  1798.     Non-nil means TAB in C mode should always reindent the current line,
  1799.     regardless of where in the line point is when the TAB command is used.
  1800.     Default is t.
  1801.  c-auto-newline
  1802.     Non-nil means automatically newline before and after braces,
  1803.     and after colons and semicolons, inserted in C code.
  1804.  c-indent-level
  1805.     Indentation of C statements within surrounding block.
  1806.     The surrounding block's indentation is the indentation
  1807.     of the line on which the open-brace appears.
  1808.  c-continued-statement-offset
  1809.     Extra indentation given to a substatement, such as the
  1810.     then-clause of an if or body of a while.
  1811.  c-continued-brace-offset
  1812.     Extra indentation given to a brace that starts a substatement.
  1813.     This is in addition to c-continued-statement-offset.
  1814.  c-brace-offset
  1815.     Extra indentation for line if it starts with an open brace.
  1816.  c-brace-imaginary-offset
  1817.     An open brace following other text is treated as if it were
  1818.     this far to the right of the start of its line.
  1819.  c-argdecl-indent
  1820.     Indentation level of declarations of C function arguments.
  1821.  c-label-offset
  1822.     Extra indentation for line that is a label, or case or ``default:'', or
  1823.     ``public:'' or ``private:'', or ``protected:''.
  1824.  c++-electric-colon
  1825.     If non-nil at invocation of c++-mode (t is the default) colon electricly
  1826.     indents.
  1827.  c++-empty-arglist-indent
  1828.     If non-nil, a function declaration or invocation which ends a line with a
  1829.     left paren is indented this many extra spaces, instead of flush with the
  1830.     left paren.
  1831.  c++-friend-offset
  1832.     Offset of C++ friend class declarations relative to member declarations.
  1833.  c++-member-init-indent
  1834.     Indentation level of member initializations in function declarations,
  1835.     if they are on a separate line beginning with a colon.
  1836.  c++-continued-member-init-offset
  1837.     Extra indentation for continuation lines of member initializations; NIL
  1838.     means to align with previous initializations rather than with the colon.
  1839.  
  1840. Settings for K&R, BSD, and Stroustrup indentation styles are
  1841.   c-indent-level                5    8    4
  1842.   c-continued-statement-offset  5    8    4
  1843.   c-continued-brace-offset                0
  1844.   c-brace-offset               -5   -8    0
  1845.   c-brace-imaginary-offset                0
  1846.   c-argdecl-indent              0    8    4
  1847.   c-label-offset               -5   -8   -4
  1848.   c++-empty-arglist-indent                4
  1849.   c++-friend-offset                       0
  1850.  
  1851. Turning on C++ mode calls the value of the variable `c++-mode-hook' with
  1852. no args if that value is non-nil." t nil)
  1853.  
  1854. ;;;***
  1855.  
  1856. ;;;### (autoloads (dabbrev-expand) "dabbrev" "dabbrev.el" (11292 51554))
  1857. ;;; Generated autoloads from dabbrev.el
  1858.  
  1859. (autoload (quote dabbrev-expand) "dabbrev" "\
  1860. Expand previous word \"dynamically\".
  1861. Expands to the most recent, preceding word for which this is a prefix.
  1862. If no suitable preceding word is found, words following point are considered.
  1863.  
  1864. If `case-fold-search' and `case-replace' are non-nil (usually true)
  1865. then the substituted word may be case-adjusted to match the abbreviation
  1866. that you had typed.  This takes place if the substituted word, as found,
  1867. is all lower case, or if it is at the beginning of a sentence and only
  1868. its first letter was upper case.
  1869.  
  1870. A positive prefix arg N says to take the Nth backward DISTINCT
  1871. possibility.  A negative argument says search forward.  The variable
  1872. `dabbrev-backward-only' may be used to limit the direction of search to
  1873. backward if set non-nil.
  1874.  
  1875. If the cursor has not moved from the end of the previous expansion and
  1876. no argument is given, replace the previously-made expansion
  1877. with the next possible expansion not yet tried." t nil)
  1878.  
  1879. (define-key esc-map "/" (quote dabbrev-expand))
  1880.  
  1881. ;;;***
  1882.  
  1883. ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "debug.el" (11181 53262))
  1884. ;;; Generated autoloads from debug.el
  1885.  
  1886. (setq debugger (quote debug))
  1887.  
  1888. (autoload (quote debug) "debug" "\
  1889. Enter debugger.  Returns if user says \"continue\".
  1890. Arguments are mainly for use when this is called from the internals
  1891. of the evaluator.
  1892.  
  1893. You may call with no args, or you may pass nil as the first arg and
  1894. any other args you like.  In that case, the list of args after the
  1895. first will be printed into the backtrace buffer." nil nil)
  1896.  
  1897. (autoload (quote debug-on-entry) "debug" "\
  1898. Request FUNCTION to invoke debugger each time it is called.
  1899. If the user continues, FUNCTION's execution proceeds.
  1900. Works by modifying the definition of FUNCTION,
  1901. which must be written in Lisp, not predefined.
  1902. Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  1903. Redefining FUNCTION also does that." t nil)
  1904.  
  1905. (autoload (quote cancel-debug-on-entry) "debug" "\
  1906. Undo effect of \\[debug-on-entry] on FUNCTION.
  1907. If argument is nil or an empty string, cancel for all functions." t nil)
  1908.  
  1909. ;;;***
  1910.  
  1911. ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (11259 36696))
  1912. ;;; Generated autoloads from delsel.el
  1913.  
  1914. (defalias (quote pending-delete-mode) (quote delete-selection-mode))
  1915.  
  1916. (autoload (quote delete-selection-mode) "delsel" "\
  1917. Toggle Delete Selection mode.
  1918. When ON, typed text replaces the selection if the selection is active.
  1919. When OFF, typed text is just inserted at point." t nil)
  1920.  
  1921. ;;;***
  1922.  
  1923. ;;;### (autoloads (diary) "diary" "diary.el" (11176 61361))
  1924. ;;; Generated autoloads from diary.el
  1925.  
  1926. (autoload (quote diary) "diary" "\
  1927. Generate the diary window for ARG days starting with the current date.
  1928. If no argument is provided, the number of days of diary entries is governed
  1929. by the variable `number-of-diary-entries'.  This function is suitable for
  1930. execution in a .emacs file." t nil)
  1931.  
  1932. ;;;***
  1933.  
  1934. ;;;### (autoloads (diff-backup diff) "diff" "diff.el" (11276 57004))
  1935. ;;; Generated autoloads from diff.el
  1936.  
  1937. (autoload (quote diff) "diff" "\
  1938. Find and display the differences between OLD and NEW files.
  1939. Interactively the current buffer's file name is the default for for NEW
  1940. and a backup file for NEW is the default for OLD.
  1941. With prefix arg, prompt for diff switches." t nil)
  1942.  
  1943. (autoload (quote diff-backup) "diff" "\
  1944. Diff this file with its backup file or vice versa.
  1945. Uses the latest backup, if there are several numerical backups.
  1946. If this file is a backup, diff it with its original.
  1947. The backup file is the first file given to `diff'." t nil)
  1948.  
  1949. ;;;***
  1950.  
  1951. ;;;### (autoloads (dired-hide-all dired-hide-subdir dired-tree-down dired-tree-up dired-kill-subdir dired-mark-subdir-files dired-goto-subdir dired-prev-subdir dired-maybe-insert-subdir dired-downcase dired-upcase dired-do-symlink-regexp dired-do-hardlink-regexp dired-do-copy-regexp dired-do-rename-regexp dired-do-rename dired-do-hardlink dired-do-symlink dired-do-copy dired-create-directory dired-string-replace-match dired-do-redisplay dired-do-load dired-do-byte-compile dired-do-compress dired-do-kill-lines dired-do-shell-command dired-do-print dired-do-chown dired-do-chgrp dired-do-chmod dired-backup-diff dired-diff) "dired-aux" "dired-aux.el" (11285 51153))
  1952. ;;; Generated autoloads from dired-aux.el
  1953.  
  1954. (autoload (quote dired-diff) "dired-aux" "\
  1955. Compare file at point with file FILE using `diff'.
  1956. FILE defaults to the file at the mark.
  1957. The prompted-for file is the first file given to `diff'." t nil)
  1958.  
  1959. (autoload (quote dired-backup-diff) "dired-aux" "\
  1960. Diff this file with its backup file or vice versa.
  1961. Uses the latest backup, if there are several numerical backups.
  1962. If this file is a backup, diff it with its original.
  1963. The backup file is the first file given to `diff'." t nil)
  1964.  
  1965. (autoload (quote dired-do-chmod) "dired-aux" "\
  1966. Change the mode of the marked (or next ARG) files.
  1967. This calls chmod, thus symbolic modes like `g+w' are allowed." t nil)
  1968.  
  1969. (autoload (quote dired-do-chgrp) "dired-aux" "\
  1970. Change the group of the marked (or next ARG) files." t nil)
  1971.  
  1972. (autoload (quote dired-do-chown) "dired-aux" "\
  1973. Change the owner of the marked (or next ARG) files." t nil)
  1974.  
  1975. (autoload (quote dired-do-print) "dired-aux" "\
  1976. Print the marked (or next ARG) files.
  1977. Uses the shell command coming from variables `lpr-command' and
  1978. `lpr-switches' as default." t nil)
  1979.  
  1980. (autoload (quote dired-do-shell-command) "dired-aux" "\
  1981. Run a shell command COMMAND on the marked files.
  1982. If no files are marked or a specific numeric prefix arg is given,
  1983. the next ARG files are used.  Just \\[universal-argument] means the current file.
  1984. The prompt mentions the file(s) or the marker, as appropriate.
  1985.  
  1986. If there is output, it goes to a separate buffer.
  1987.  
  1988. Normally the command is run on each file individually.
  1989. However, if there is a `*' in the command then it is run
  1990. just once with the entire file list substituted there.
  1991.  
  1992. No automatic redisplay of dired buffers is attempted, as there's no
  1993. telling what files the command may have changed.  Type
  1994. \\[dired-do-redisplay] to redisplay the marked files.
  1995.  
  1996. The shell command has the top level directory as working directory, so
  1997. output files usually are created there instead of in a subdir." t nil)
  1998.  
  1999. (autoload (quote dired-do-kill-lines) "dired-aux" "\
  2000. Kill all marked lines (not the files).
  2001. With a prefix argument, kill that many lines starting with the current line.
  2002. (A negative argument kills lines before the current line.)
  2003. To kill an entire subdirectory, go to its directory header line
  2004. and use this command with a prefix argument (the value does not matter)." t nil)
  2005.  
  2006. (autoload (quote dired-do-compress) "dired-aux" "\
  2007. Compress or uncompress marked (or next ARG) files." t nil)
  2008.  
  2009. (autoload (quote dired-do-byte-compile) "dired-aux" "\
  2010. Byte compile marked (or next ARG) Emacs Lisp files." t nil)
  2011.  
  2012. (autoload (quote dired-do-load) "dired-aux" "\
  2013. Load the marked (or next ARG) Emacs Lisp files." t nil)
  2014.  
  2015. (autoload (quote dired-do-redisplay) "dired-aux" "\
  2016. Redisplay all marked (or next ARG) files.
  2017. If on a subdir line, redisplay that subdirectory.  In that case,
  2018. a prefix arg lets you edit the `ls' switches used for the new listing." t nil)
  2019.  
  2020. (autoload (quote dired-string-replace-match) "dired-aux" "\
  2021. Replace first match of REGEXP in STRING with NEWTEXT.
  2022. If it does not match, nil is returned instead of the new string.
  2023. Optional arg LITERAL means to take NEWTEXT literally.
  2024. Optional arg GLOBAL means to replace all matches." nil nil)
  2025.  
  2026. (autoload (quote dired-create-directory) "dired-aux" "\
  2027. Create a directory called DIRECTORY." t nil)
  2028.  
  2029. (autoload (quote dired-do-copy) "dired-aux" "\
  2030. Copy all marked (or next ARG) files, or copy the current file.
  2031. This normally preserves the last-modified date when copying.
  2032. When operating on just the current file, you specify the new name.
  2033. When operating on multiple or marked files, you specify a directory
  2034. and new symbolic links are made in that directory
  2035. with the same names that the files currently have." t nil)
  2036.  
  2037. (autoload (quote dired-do-symlink) "dired-aux" "\
  2038. Make symbolic links to current file or all marked (or next ARG) files.
  2039. When operating on just the current file, you specify the new name.
  2040. When operating on multiple or marked files, you specify a directory
  2041. and new symbolic links are made in that directory
  2042. with the same names that the files currently have." t nil)
  2043.  
  2044. (autoload (quote dired-do-hardlink) "dired-aux" "\
  2045. Add names (hard links) current file or all marked (or next ARG) files.
  2046. When operating on just the current file, you specify the new name.
  2047. When operating on multiple or marked files, you specify a directory
  2048. and new hard links are made in that directory
  2049. with the same names that the files currently have." t nil)
  2050.  
  2051. (autoload (quote dired-do-rename) "dired-aux" "\
  2052. Rename current file or all marked (or next ARG) files.
  2053. When renaming just the current file, you specify the new name.
  2054. When renaming multiple or marked files, you specify a directory." t nil)
  2055.  
  2056. (autoload (quote dired-do-rename-regexp) "dired-aux" "\
  2057. Rename marked files containing REGEXP to NEWNAME.
  2058. As each match is found, the user must type a character saying
  2059.   what to do with it.  For directions, type \\[help-command] at that time.
  2060. NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
  2061. REGEXP defaults to the last regexp used.
  2062. With a zero prefix arg, renaming by regexp affects the complete
  2063.   pathname - usually only the non-directory part of file names is used
  2064.   and changed." t nil)
  2065.  
  2066. (autoload (quote dired-do-copy-regexp) "dired-aux" "\
  2067. Copy all marked files containing REGEXP to NEWNAME.
  2068. See function `dired-rename-regexp' for more info." t nil)
  2069.  
  2070. (autoload (quote dired-do-hardlink-regexp) "dired-aux" "\
  2071. Hardlink all marked files containing REGEXP to NEWNAME.
  2072. See function `dired-rename-regexp' for more info." t nil)
  2073.  
  2074. (autoload (quote dired-do-symlink-regexp) "dired-aux" "\
  2075. Symlink all marked files containing REGEXP to NEWNAME.
  2076. See function `dired-rename-regexp' for more info." t nil)
  2077.  
  2078. (autoload (quote dired-upcase) "dired-aux" "\
  2079. Rename all marked (or next ARG) files to upper case." t nil)
  2080.  
  2081. (autoload (quote dired-downcase) "dired-aux" "\
  2082. Rename all marked (or next ARG) files to lower case." t nil)
  2083.  
  2084. (autoload (quote dired-maybe-insert-subdir) "dired-aux" "\
  2085. Insert this subdirectory into the same dired buffer.
  2086. If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
  2087.   else inserts it at its natural place (as `ls -lR' would have done).
  2088. With a prefix arg, you may edit the ls switches used for this listing.
  2089.   You can add `R' to the switches to expand the whole tree starting at
  2090.   this subdirectory.
  2091. This function takes some pains to conform to `ls -lR' output." t nil)
  2092.  
  2093. (autoload (quote dired-prev-subdir) "dired-aux" "\
  2094. Go to previous subdirectory, regardless of level.
  2095. When called interactively and not on a subdir line, go to this subdir's line." t nil)
  2096.  
  2097. (autoload (quote dired-goto-subdir) "dired-aux" "\
  2098. Go to end of header line of DIR in this dired buffer.
  2099. Return value of point on success, otherwise return nil.
  2100. The next char is either \\n, or \\r if DIR is hidden." t nil)
  2101.  
  2102. (autoload (quote dired-mark-subdir-files) "dired-aux" "\
  2103. Mark all files except `.' and `..'." t nil)
  2104.  
  2105. (autoload (quote dired-kill-subdir) "dired-aux" "\
  2106. Remove all lines of current subdirectory.
  2107. Lower levels are unaffected." t nil)
  2108.  
  2109. (autoload (quote dired-tree-up) "dired-aux" "\
  2110. Go up ARG levels in the dired tree." t nil)
  2111.  
  2112. (autoload (quote dired-tree-down) "dired-aux" "\
  2113. Go down in the dired tree." t nil)
  2114.  
  2115. (autoload (quote dired-hide-subdir) "dired-aux" "\
  2116. Hide or unhide the current subdirectory and move to next directory.
  2117. Optional prefix arg is a repeat factor.
  2118. Use \\[dired-hide-all] to (un)hide all directories." t nil)
  2119.  
  2120. (autoload (quote dired-hide-all) "dired-aux" "\
  2121. Hide all subdirectories, leaving only their header lines.
  2122. If there is already something hidden, make everything visible again.
  2123. Use \\[dired-hide-subdir] to (un)hide a particular subdirectory." t nil)
  2124.  
  2125. ;;;***
  2126.  
  2127. ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired.el" (11293 33078))
  2128. ;;; Generated autoloads from dired.el
  2129.  
  2130. (defvar dired-listing-switches "-al" "\
  2131. *Switches passed to `ls' for dired.  MUST contain the `l' option.
  2132. May contain all other options that don't contradict `-l';
  2133. may contain even `F', `b', `i' and `s'.")
  2134.  
  2135. (defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v silicon-graphics-unix))) "chown" "/etc/chown") "\
  2136. Name of chown command (usually `chown' or `/etc/chown').")
  2137.  
  2138. (defvar dired-ls-F-marks-symlinks nil "\
  2139. *Informs dired about how `ls -lF' marks symbolic links.
  2140. Set this to t if `insert-directory-program' with `-lF' marks the symbolic link
  2141. itself with a trailing @ (usually the case under Ultrix).
  2142.  
  2143. Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
  2144. nil (the default), if it gives `bar@ -> foo', set it to t.
  2145.  
  2146. Dired checks if there is really a @ appended.  Thus, if you have a
  2147. marking `ls' program on one host and a non-marking on another host, and
  2148. don't care about symbolic links which really end in a @, you can
  2149. always set this variable to t.")
  2150.  
  2151. (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\
  2152. *Regexp of files to skip when finding first file of a directory.
  2153. A value of nil means move to the subdir line.
  2154. A value of t means move to first file.")
  2155.  
  2156. (defvar dired-keep-marker-rename t "\
  2157. *Controls marking of renamed files.
  2158. If t, files keep their previous marks when they are renamed.
  2159. If a character, renamed files (whether previously marked or not)
  2160. are afterward marked with that character.")
  2161.  
  2162. (defvar dired-keep-marker-copy 67 "\
  2163. *Controls marking of copied files.
  2164. If t, copied files are marked if and as the corresponding original files were.
  2165. If a character, copied files are unconditionally marked with that character.")
  2166.  
  2167. (defvar dired-keep-marker-hardlink 72 "\
  2168. *Controls marking of newly made hard links.
  2169. If t, they are marked if and as the files linked to were marked.
  2170. If a character, new links are unconditionally marked with that character.")
  2171.  
  2172. (defvar dired-keep-marker-symlink 89 "\
  2173. *Controls marking of newly made symbolic links.
  2174. If t, they are marked if and as the files linked to were marked.
  2175. If a character, new links are unconditionally marked with that character.")
  2176.  
  2177. (defvar dired-dwim-target nil "\
  2178. *If non-nil, dired tries to guess a default target directory.
  2179. This means: if there is a dired buffer displayed in the next window,
  2180. use its current subdir, instead of the current subdir of this dired buffer.
  2181.  
  2182. The target is used in the prompt for file copy, rename etc.")
  2183.  
  2184. (defvar dired-copy-preserve-time t "\
  2185. *If non-nil, Dired preserves the last-modified time in a file copy.
  2186. (This works on only some systems.)")
  2187. (define-key ctl-x-map "d" 'dired)
  2188.  
  2189. (autoload (quote dired) "dired" "\
  2190. \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
  2191. Optional second argument SWITCHES specifies the `ls' options used.
  2192. (Interactively, use a prefix argument to be able to specify SWITCHES.)
  2193. Dired displays a list of files in DIRNAME (which may also have
  2194. shell wildcards appended to select certain files).  If DIRNAME is a cons,
  2195. its first element is taken as the directory name and the resr as an explicit
  2196. list of files to make directory entries for.
  2197. \\<dired-mode-map>You can move around in it with the usual commands.
  2198. You can flag files for deletion with \\[dired-flag-file-deletion] and then
  2199. delete them by typing \\[dired-do-flagged-delete].
  2200. Type \\[describe-mode] after entering dired for more info.
  2201.  
  2202. If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
  2203. (define-key ctl-x-4-map "d" 'dired-other-window)
  2204.  
  2205. (autoload (quote dired-other-window) "dired" "\
  2206. \"Edit\" directory DIRNAME.  Like `dired' but selects in another window." t nil)
  2207. (define-key ctl-x-5-map "d" 'dired-other-frame)
  2208.  
  2209. (autoload (quote dired-other-frame) "dired" "\
  2210. \"Edit\" directory DIRNAME.  Like `dired' but makes a new frame." t nil)
  2211.  
  2212. (autoload (quote dired-noselect) "dired" "\
  2213. Like `dired' but returns the dired buffer as value, does not select it." nil nil)
  2214.  
  2215. ;;;***
  2216.  
  2217. ;;;### (autoloads (disassemble) "disass" "disass.el" (11295 37242))
  2218. ;;; Generated autoloads from disass.el
  2219.  
  2220. (autoload (quote disassemble) "disass" "\
  2221. Print disassembled code for OBJECT in (optional) BUFFER.
  2222. OBJECT can be a symbol defined as a function, or a function itself
  2223. (a lambda expression or a compiled-function object).
  2224. If OBJECT is not already compiled, we compile it, but do not
  2225. redefine OBJECT if it is a symbol." t nil)
  2226.  
  2227. ;;;***
  2228.  
  2229. ;;;### (autoloads (standard-display-european create-glyph standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "disp-table.el" (11265 29044))
  2230. ;;; Generated autoloads from disp-table.el
  2231.  
  2232. (autoload (quote describe-current-display-table) "disp-table" "\
  2233. Describe the display table in use in the selected window and buffer." t nil)
  2234.  
  2235. (autoload (quote make-display-table) "disp-table" "\
  2236. Return a new, empty display table." nil nil)
  2237.  
  2238. (autoload (quote standard-display-8bit) "disp-table" "\
  2239. Display characters in the range L to H literally." nil nil)
  2240.  
  2241. (autoload (quote standard-display-default) "disp-table" "\
  2242. Display characters in the range L to H using the default notation." nil nil)
  2243.  
  2244. (autoload (quote standard-display-ascii) "disp-table" "\
  2245. Display character C using string S." nil nil)
  2246.  
  2247. (autoload (quote standard-display-g1) "disp-table" "\
  2248. Display character C as character SC in the g1 character set." nil nil)
  2249.  
  2250. (autoload (quote standard-display-graphic) "disp-table" "\
  2251. Display character C as character GC in graphics character set." nil nil)
  2252.  
  2253. (autoload (quote standard-display-underline) "disp-table" "\
  2254. Display character C as character UC plus underlining." nil nil)
  2255.  
  2256. (autoload (quote create-glyph) "disp-table" nil nil nil)
  2257.  
  2258. (autoload (quote standard-display-european) "disp-table" "\
  2259. Toggle display of European characters encoded with ISO 8859.
  2260. When enabled, characters in the range of 160 to 255 display not
  2261. as octal escapes, but as accented characters.
  2262. With prefix argument, enable European character display iff arg is positive." t nil)
  2263.  
  2264. ;;;***
  2265.  
  2266. ;;;### (autoloads (dissociated-press) "dissociate" "dissociate.el" (11285 51167))
  2267. ;;; Generated autoloads from dissociate.el
  2268.  
  2269. (autoload (quote dissociated-press) "dissociate" "\
  2270. Dissociate the text of the current buffer.
  2271. Output goes in buffer named *Dissociation*,
  2272. which is redisplayed each time text is added to it.
  2273. Every so often the user must say whether to continue.
  2274. If ARG is positive, require ARG chars of continuity.
  2275. If ARG is negative, require -ARG words of continuity.
  2276. Default is 2." t nil)
  2277.  
  2278. ;;;***
  2279.  
  2280. ;;;### (autoloads (doctor) "doctor" "doctor.el" (11285 51174))
  2281. ;;; Generated autoloads from doctor.el
  2282.  
  2283. (autoload (quote doctor) "doctor" "\
  2284. Switch to *doctor* buffer and start giving psychotherapy." t nil)
  2285.  
  2286. ;;;***
  2287.  
  2288. ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" (11189 17403))
  2289. ;;; Generated autoloads from ebuff-menu.el
  2290.  
  2291. (autoload (quote electric-buffer-list) "ebuff-menu" "\
  2292. Pops up a buffer describing the set of Emacs buffers.
  2293. Vaguely like ITS lunar select buffer; combining typeoutoid buffer
  2294. listing with menuoid buffer selection.
  2295.  
  2296. If the very next character typed is a space then the buffer list
  2297. window disappears.  Otherwise, one may move around in the buffer list
  2298. window, marking buffers to be selected, saved or deleted.
  2299.  
  2300. To exit and select a new buffer, type a space when the cursor is on
  2301. the appropriate line of the buffer-list window.  Other commands are
  2302. much like those of buffer-menu-mode.
  2303.  
  2304. Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
  2305.  
  2306. \\{electric-buffer-menu-mode-map}" t nil)
  2307.  
  2308. ;;;***
  2309.  
  2310. ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" "echistory.el" (11288 43486))
  2311. ;;; Generated autoloads from echistory.el
  2312.  
  2313. (autoload (quote Electric-command-history-redo-expression) "echistory" "\
  2314. Edit current history line in minibuffer and execute result.
  2315. With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
  2316.  
  2317. ;;;***
  2318.  
  2319. ;;;### (autoloads (edebug-debug edebug-defun) "edebug" "edebug.el" (11285 51182))
  2320. ;;; Generated autoloads from edebug.el
  2321.  
  2322. (autoload (quote edebug-defun) "edebug" "\
  2323. Evaluate defun or defmacro, like eval-defun, but with edebug calls.
  2324. Print its name in the minibuffer and leave point after any error it finds,
  2325. with mark at the original point." t nil)
  2326.  
  2327. (defvar global-edebug-prefix "X" "\
  2328. Prefix key for global edebug commands, available from any buffer.")
  2329.  
  2330. (defvar global-edebug-map nil "\
  2331. Global map of edebug commands, available from any buffer.")
  2332.  
  2333. (if global-edebug-map nil (setq global-edebug-map (make-sparse-keymap)) (global-unset-key global-edebug-prefix) (global-set-key global-edebug-prefix global-edebug-map) (define-key global-edebug-map "d" (quote edebug-defun)) (define-key global-edebug-map " " (quote edebug-step-through)) (define-key global-edebug-map "g" (quote edebug-go)) (define-key global-edebug-map "G" (quote edebug-Go-nonstop)) (define-key global-edebug-map "t" (quote edebug-trace)) (define-key global-edebug-map "T" (quote edebug-Trace-fast)) (define-key global-edebug-map "c" (quote edebug-continue)) (define-key global-edebug-map "C" (quote edebug-Continue-fast)) (define-key global-edebug-map "b" (quote edebug-set-breakpoint)) (define-key global-edebug-map "x" (quote edebug-set-conditional-breakpoint)) (define-key global-edebug-map "u" (quote edebug-unset-breakpoint)) (define-key global-edebug-map "w" (quote edebug-where)) (define-key global-edebug-map "q" (quote top-level)))
  2334.  
  2335. (autoload (quote edebug-debug) "edebug" "\
  2336. Replacement for debug.  
  2337. If an error or quit occurred and we are running an edebugged function,
  2338. show where we last were.  Otherwise call debug normally." nil nil)
  2339.  
  2340. ;;;***
  2341.  
  2342. ;;;### (autoloads (read-kbd-macro edit-kbd-macro edit-last-kbd-macro) "edmacro" "edmacro.el" (11176 61364))
  2343. ;;; Generated autoloads from edmacro.el
  2344.  
  2345. (autoload (quote edit-last-kbd-macro) "edmacro" "\
  2346. Edit the most recently defined keyboard macro." t nil)
  2347.  
  2348. (autoload (quote edit-kbd-macro) "edmacro" "\
  2349. Edit a keyboard macro which has been given a name by `name-last-kbd-macro'.
  2350. (See also `edit-last-kbd-macro'.)" t nil)
  2351.  
  2352. (autoload (quote read-kbd-macro) "edmacro" "\
  2353. Read the region as a keyboard macro definition.
  2354. The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
  2355. The resulting macro is installed as the \"current\" keyboard macro.
  2356.  
  2357. Symbols:  RET, SPC, TAB, DEL, LFD, NUL; C-key; M-key.  (Must be uppercase.)
  2358.           REM marks the rest of a line as a comment.
  2359.           Whitespace is ignored; other characters are copied into the macro." t nil)
  2360.  
  2361. ;;;***
  2362.  
  2363. ;;;### (autoloads (edt-emulation-on) "edt" "edt.el" (11285 51187))
  2364. ;;; Generated autoloads from edt.el
  2365.  
  2366. (autoload (quote edt-emulation-on) "edt" "\
  2367. Emulate DEC's EDT editor.
  2368. Note that many keys are rebound; including nearly all keypad keys.
  2369. Use \\[edt-emulation-off] to undo all rebindings except the keypad keys." t nil)
  2370.  
  2371. ;;;***
  2372.  
  2373. ;;;### (autoloads (report-emacs-bug) "emacsbug" "emacsbug.el" (11185 3426))
  2374. ;;; Generated autoloads from emacsbug.el
  2375.  
  2376. (autoload (quote report-emacs-bug) "emacsbug" "\
  2377. Report a bug in GNU Emacs.
  2378. Prompts for bug subject.  Leaves you in a mail buffer." t nil)
  2379.  
  2380. ;;;***
  2381.  
  2382. ;;;### (autoloads (emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "emerge.el" (11292 61746))
  2383. ;;; Generated autoloads from emerge.el
  2384.  
  2385. (autoload (quote emerge-files) "emerge" "\
  2386. Run Emerge on two files." t nil)
  2387.  
  2388. (autoload (quote emerge-files-with-ancestor) "emerge" "\
  2389. Run Emerge on two files, giving another file as the ancestor." t nil)
  2390.  
  2391. (autoload (quote emerge-buffers) "emerge" "\
  2392. Run Emerge on two buffers." t nil)
  2393.  
  2394. (autoload (quote emerge-buffers-with-ancestor) "emerge" "\
  2395. Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
  2396.  
  2397. (autoload (quote emerge-files-command) "emerge" nil nil nil)
  2398.  
  2399. (autoload (quote emerge-files-with-ancestor-command) "emerge" nil nil nil)
  2400.  
  2401. (autoload (quote emerge-files-remote) "emerge" nil nil nil)
  2402.  
  2403. (autoload (quote emerge-files-with-ancestor-remote) "emerge" nil nil nil)
  2404.  
  2405. ;;;***
  2406.  
  2407. ;;;### (autoloads (setenv) "env" "env.el" (11288 64005))
  2408. ;;; Generated autoloads from env.el
  2409.  
  2410. (autoload (quote setenv) "env" "\
  2411. Set the value of the environment variable named VARIABLE to VALUE.
  2412. VARIABLE should be a string.  VALUE is optional; if not provided or is
  2413. `nil', the environment variable VARIABLE will be removed.  
  2414. This function works by modifying `process-environment'." t nil)
  2415.  
  2416. ;;;***
  2417.  
  2418. (defvar tags-file-name nil "\
  2419. *File name of tags table.
  2420. To switch to a new tags table, setting this variable is sufficient.
  2421. If you set this variable, do not also set `tags-table-list'.
  2422. Use the `etags' program to make a tags table file.")
  2423. (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
  2424.  
  2425. (defvar tags-table-list nil "\
  2426. *List of file names of tags tables to search.
  2427. An element that is a directory means the file \"TAGS\" in that directory.
  2428. To switch to a new list of tags tables, setting this variable is sufficient.
  2429. If you set this variable, do not also set `tags-file-name'.
  2430. Use the `etags' program to make a tags table file.")
  2431.  
  2432. (defvar find-tag-hook nil "\
  2433. *Hook to be run by \\[find-tag] after finding a tag.  See `run-hooks'.
  2434. The value in the buffer in which \\[find-tag] is done is used,
  2435. not the value in the buffer \\[find-tag] goes to.")
  2436.  
  2437. (defvar find-tag-default-function nil "\
  2438. *A function of no arguments used by \\[find-tag] to pick a default tag.
  2439. If nil, and the symbol that is the value of `major-mode'
  2440. has a `find-tag-default-function' property (see `put'), that is used.
  2441. Otherwise, `find-tag-default' is used.")
  2442.  
  2443. (defvar default-tags-table-function nil "\
  2444. *If non-nil, a function of no arguments to choose a default tags file
  2445. for a particular buffer.")
  2446.  
  2447. (autoload (quote visit-tags-table) "etags" "\
  2448. Tell tags commands to use tags table file FILE.
  2449. FILE should be the name of a file created with the `etags' program.
  2450. A directory name is ok too; it means file TAGS in that directory.
  2451.  
  2452. Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
  2453. With a prefix arg, set the buffer-local value instead.
  2454. When you find a tag with \\[find-tag], the buffer it finds the tag
  2455. in is given a local value of this variable which is the name of the tags
  2456. file the tag was in." t nil)
  2457.  
  2458. (autoload (quote tags-table-files) "etags" "\
  2459. Return a list of files in the current tags table.
  2460. Assumes the tags table is the current buffer.
  2461. File names returned are absolute." nil nil)
  2462.  
  2463. (autoload (quote find-tag-noselect) "etags" "\
  2464. Find tag (in current tags table) whose name contains TAGNAME.
  2465. Returns the buffer containing the tag's definition and moves its point there,
  2466. but does not select the buffer.
  2467. The default for TAGNAME is the expression in the buffer near point.
  2468.  
  2469. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2470. another tag that matches the last tagname or regexp used.  When there are
  2471. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2472. is the atom `-' (interactively, with prefix arg that is a negative number
  2473. or just \\[negative-argument]), pop back to the previous tag gone to.
  2474.  
  2475. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
  2476.  
  2477. See documentation of variable `tags-file-name'." t nil)
  2478.  
  2479. (autoload (quote find-tag) "etags" "\
  2480. Find tag (in current tags table) whose name contains TAGNAME.
  2481. Select the buffer containing the tag's definition, and move point there.
  2482. The default for TAGNAME is the expression in the buffer around or before point.
  2483.  
  2484. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2485. another tag that matches the last tagname or regexp used.  When there are
  2486. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2487. is the atom `-' (interactively, with prefix arg that is a negative number
  2488. or just \\[negative-argument]), pop back to the previous tag gone to.
  2489.  
  2490. See documentation of variable `tags-file-name'." t nil)
  2491. (define-key esc-map "." 'find-tag)
  2492.  
  2493. (autoload (quote find-tag-other-window) "etags" "\
  2494. Find tag (in current tags table) whose name contains TAGNAME.
  2495. Select the buffer containing the tag's definition in another window, and
  2496. move point there.  The default for TAGNAME is the expression in the buffer
  2497. around or before point.
  2498.  
  2499. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2500. another tag that matches the last tagname or regexp used.  When there are
  2501. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2502. is negative (interactively, with prefix arg that is a negative number or
  2503. just \\[negative-argument]), pop back to the previous tag gone to.
  2504.  
  2505. See documentation of variable `tags-file-name'." t nil)
  2506. (define-key ctl-x-4-map "." 'find-tag-other-window)
  2507.  
  2508. (autoload (quote find-tag-other-frame) "etags" "\
  2509. Find tag (in current tags table) whose name contains TAGNAME.
  2510. Select the buffer containing the tag's definition in another frame, and
  2511. move point there.  The default for TAGNAME is the expression in the buffer
  2512. around or before point.
  2513.  
  2514. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2515. another tag that matches the last tagname or regexp used.  When there are
  2516. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2517. is negative (interactively, with prefix arg that is a negative number or
  2518. just \\[negative-argument]), pop back to the previous tag gone to.
  2519.  
  2520. See documentation of variable `tags-file-name'." t nil)
  2521. (define-key ctl-x-5-map "." 'find-tag-other-frame)
  2522.  
  2523. (autoload (quote find-tag-regexp) "etags" "\
  2524. Find tag (in current tags table) whose name matches REGEXP.
  2525. Select the buffer containing the tag's definition and move point there.
  2526.  
  2527. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2528. another tag that matches the last tagname or regexp used.  When there are
  2529. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2530. is negative (interactively, with prefix arg that is a negative number or
  2531. just \\[negative-argument]), pop back to the previous tag gone to.
  2532.  
  2533. If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
  2534.  
  2535. See documentation of variable `tags-file-name'." t nil)
  2536.  
  2537. (autoload (quote next-file) "etags" "\
  2538. Select next file among files in current tags table.
  2539. Non-nil first argument (prefix arg, if interactive)
  2540. initializes to the beginning of the list of files in the tags table.
  2541.  
  2542. Non-nil second argument NOVISIT means use a temporary buffer
  2543.  to save time and avoid uninteresting warnings.
  2544.  
  2545. Value is nil if the file was already visited;
  2546. if the file was newly read in, the value is the filename." t nil)
  2547.  
  2548. (autoload (quote tags-loop-continue) "etags" "\
  2549. Continue last \\[tags-search] or \\[tags-query-replace] command.
  2550. Used noninteractively with non-nil argument to begin such a command.
  2551. Two variables control the processing we do on each file:
  2552. the value of `tags-loop-scan' is a form to be executed on each file
  2553. to see if it is interesting (it returns non-nil if so)
  2554. and `tags-loop-operate' is a form to execute to operate on an interesting file
  2555. If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
  2556. (define-key esc-map "," 'tags-loop-continue)
  2557.  
  2558. (autoload (quote tags-search) "etags" "\
  2559. Search through all files listed in tags table for match for REGEXP.
  2560. Stops when a match is found.
  2561. To continue searching for next match, use command \\[tags-loop-continue].
  2562.  
  2563. See documentation of variable `tags-file-name'." t nil)
  2564.  
  2565. (autoload (quote tags-query-replace) "etags" "\
  2566. Query-replace-regexp FROM with TO through all files listed in tags table.
  2567. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2568. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  2569. with the command \\[tags-loop-continue].
  2570.  
  2571. See documentation of variable `tags-file-name'." t nil)
  2572.  
  2573. (autoload (quote list-tags) "etags" "\
  2574. Display list of tags in file FILE.
  2575. FILE should not contain a directory specification
  2576. unless it has one in the tags table." t nil)
  2577.  
  2578. (autoload (quote tags-apropos) "etags" "\
  2579. Display list of all tags in tags table REGEXP matches." t nil)
  2580.  
  2581. (autoload (quote select-tags-table) "etags" "\
  2582. Select a tags table file from a menu of those you have already used.
  2583. The list of tags tables to select from is stored in `tags-table-file-list';
  2584. see the doc of that variable if you want to add names to the list." t nil)
  2585.  
  2586. (autoload (quote complete-tag) "etags" "\
  2587. Perform tags completion on the text around point.
  2588. Completes to the set of names listed in the current tags table.  
  2589. The string to complete is chosen in the same way as the default
  2590. for \\[find-tag] (which see)." t nil)
  2591. (define-key esc-map "\t" 'complete-tag)
  2592.  
  2593. ;;;***
  2594.  
  2595. ;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-regexp find-tag-other-frame find-tag-other-window find-tag find-tag-noselect tags-table-files visit-tags-table) "etags" "etags.el" (11288 45533))
  2596. ;;; Generated autoloads from etags.el
  2597.  
  2598. (defvar tags-file-name nil "\
  2599. *File name of tags table.
  2600. To switch to a new tags table, setting this variable is sufficient.
  2601. If you set this variable, do not also set `tags-table-list'.
  2602. Use the `etags' program to make a tags table file.")
  2603. (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
  2604.  
  2605. (defvar tags-table-list nil "\
  2606. *List of file names of tags tables to search.
  2607. An element that is a directory means the file \"TAGS\" in that directory.
  2608. To switch to a new list of tags tables, setting this variable is sufficient.
  2609. If you set this variable, do not also set `tags-file-name'.
  2610. Use the `etags' program to make a tags table file.")
  2611.  
  2612. (defvar find-tag-hook nil "\
  2613. *Hook to be run by \\[find-tag] after finding a tag.  See `run-hooks'.
  2614. The value in the buffer in which \\[find-tag] is done is used,
  2615. not the value in the buffer \\[find-tag] goes to.")
  2616.  
  2617. (defvar find-tag-default-function nil "\
  2618. *A function of no arguments used by \\[find-tag] to pick a default tag.
  2619. If nil, and the symbol that is the value of `major-mode'
  2620. has a `find-tag-default-function' property (see `put'), that is used.
  2621. Otherwise, `find-tag-default' is used.")
  2622.  
  2623. (defvar default-tags-table-function nil "\
  2624. *If non-nil, a function of no arguments to choose a default tags file
  2625. for a particular buffer.")
  2626.  
  2627. (autoload (quote visit-tags-table) "etags" "\
  2628. Tell tags commands to use tags table file FILE.
  2629. FILE should be the name of a file created with the `etags' program.
  2630. A directory name is ok too; it means file TAGS in that directory.
  2631.  
  2632. Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
  2633. With a prefix arg, set the buffer-local value instead.
  2634. When you find a tag with \\[find-tag], the buffer it finds the tag
  2635. in is given a local value of this variable which is the name of the tags
  2636. file the tag was in." t nil)
  2637.  
  2638. (autoload (quote tags-table-files) "etags" "\
  2639. Return a list of files in the current tags table.
  2640. Assumes the tags table is the current buffer.
  2641. File names returned are absolute." nil nil)
  2642.  
  2643. (autoload (quote find-tag-noselect) "etags" "\
  2644. Find tag (in current tags table) whose name contains TAGNAME.
  2645. Returns the buffer containing the tag's definition and moves its point there,
  2646. but does not select the buffer.
  2647. The default for TAGNAME is the expression in the buffer near point.
  2648.  
  2649. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2650. another tag that matches the last tagname or regexp used.  When there are
  2651. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2652. is the atom `-' (interactively, with prefix arg that is a negative number
  2653. or just \\[negative-argument]), pop back to the previous tag gone to.
  2654.  
  2655. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
  2656.  
  2657. See documentation of variable `tags-file-name'." t nil)
  2658.  
  2659. (autoload (quote find-tag) "etags" "\
  2660. Find tag (in current tags table) whose name contains TAGNAME.
  2661. Select the buffer containing the tag's definition, and move point there.
  2662. The default for TAGNAME is the expression in the buffer around or before point.
  2663.  
  2664. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2665. another tag that matches the last tagname or regexp used.  When there are
  2666. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2667. is the atom `-' (interactively, with prefix arg that is a negative number
  2668. or just \\[negative-argument]), pop back to the previous tag gone to.
  2669.  
  2670. See documentation of variable `tags-file-name'." t nil)
  2671. (define-key esc-map "." 'find-tag)
  2672.  
  2673. (autoload (quote find-tag-other-window) "etags" "\
  2674. Find tag (in current tags table) whose name contains TAGNAME.
  2675. Select the buffer containing the tag's definition in another window, and
  2676. move point there.  The default for TAGNAME is the expression in the buffer
  2677. around or before point.
  2678.  
  2679. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2680. another tag that matches the last tagname or regexp used.  When there are
  2681. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2682. is negative (interactively, with prefix arg that is a negative number or
  2683. just \\[negative-argument]), pop back to the previous tag gone to.
  2684.  
  2685. See documentation of variable `tags-file-name'." t nil)
  2686. (define-key ctl-x-4-map "." 'find-tag-other-window)
  2687.  
  2688. (autoload (quote find-tag-other-frame) "etags" "\
  2689. Find tag (in current tags table) whose name contains TAGNAME.
  2690. Select the buffer containing the tag's definition in another frame, and
  2691. move point there.  The default for TAGNAME is the expression in the buffer
  2692. around or before point.
  2693.  
  2694. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2695. another tag that matches the last tagname or regexp used.  When there are
  2696. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2697. is negative (interactively, with prefix arg that is a negative number or
  2698. just \\[negative-argument]), pop back to the previous tag gone to.
  2699.  
  2700. See documentation of variable `tags-file-name'." t nil)
  2701. (define-key ctl-x-5-map "." 'find-tag-other-frame)
  2702.  
  2703. (autoload (quote find-tag-regexp) "etags" "\
  2704. Find tag (in current tags table) whose name matches REGEXP.
  2705. Select the buffer containing the tag's definition and move point there.
  2706.  
  2707. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2708. another tag that matches the last tagname or regexp used.  When there are
  2709. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2710. is negative (interactively, with prefix arg that is a negative number or
  2711. just \\[negative-argument]), pop back to the previous tag gone to.
  2712.  
  2713. If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
  2714.  
  2715. See documentation of variable `tags-file-name'." t nil)
  2716.  
  2717. (autoload (quote next-file) "etags" "\
  2718. Select next file among files in current tags table.
  2719. Non-nil first argument (prefix arg, if interactive)
  2720. initializes to the beginning of the list of files in the tags table.
  2721.  
  2722. Non-nil second argument NOVISIT means use a temporary buffer
  2723.  to save time and avoid uninteresting warnings.
  2724.  
  2725. Value is nil if the file was already visited;
  2726. if the file was newly read in, the value is the filename." t nil)
  2727.  
  2728. (autoload (quote tags-loop-continue) "etags" "\
  2729. Continue last \\[tags-search] or \\[tags-query-replace] command.
  2730. Used noninteractively with non-nil argument to begin such a command.
  2731. Two variables control the processing we do on each file:
  2732. the value of `tags-loop-scan' is a form to be executed on each file
  2733. to see if it is interesting (it returns non-nil if so)
  2734. and `tags-loop-operate' is a form to execute to operate on an interesting file
  2735. If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
  2736. (define-key esc-map "," 'tags-loop-continue)
  2737.  
  2738. (autoload (quote tags-search) "etags" "\
  2739. Search through all files listed in tags table for match for REGEXP.
  2740. Stops when a match is found.
  2741. To continue searching for next match, use command \\[tags-loop-continue].
  2742.  
  2743. See documentation of variable `tags-file-name'." t nil)
  2744.  
  2745. (autoload (quote tags-query-replace) "etags" "\
  2746. Query-replace-regexp FROM with TO through all files listed in tags table.
  2747. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2748. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  2749. with the command \\[tags-loop-continue].
  2750.  
  2751. See documentation of variable `tags-file-name'." t nil)
  2752.  
  2753. (autoload (quote list-tags) "etags" "\
  2754. Display list of tags in file FILE.
  2755. FILE should not contain a directory specification
  2756. unless it has one in the tags table." t nil)
  2757.  
  2758. (autoload (quote tags-apropos) "etags" "\
  2759. Display list of all tags in tags table REGEXP matches." t nil)
  2760.  
  2761. (autoload (quote select-tags-table) "etags" "\
  2762. Select a tags table file from a menu of those you have already used.
  2763. The list of tags tables to select from is stored in `tags-table-file-list';
  2764. see the doc of that variable if you want to add names to the list." t nil)
  2765.  
  2766. (autoload (quote complete-tag) "etags" "\
  2767. Perform tags completion on the text around point.
  2768. Completes to the set of names listed in the current tags table.  
  2769. The string to complete is chosen in the same way as the default
  2770. for \\[find-tag] (which see)." t nil)
  2771. (define-key esc-map "\t" 'complete-tag)
  2772.  
  2773. ;;;***
  2774.  
  2775. ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "find-dired.el" (11269 25506))
  2776. ;;; Generated autoloads from find-dired.el
  2777.  
  2778. (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) "-ls" "-exec ls -ldi {} \\;") "\
  2779. *Option to `find' to produce an `ls -l'-type listing.")
  2780.  
  2781. (defvar find-grep-options (if (eq system-type (quote berkeley-unix)) "-s" "-l") "\
  2782. *Option to grep to be as silent as possible.
  2783. On Berkeley systems, this is `-s', for others it seems impossible to
  2784. suppress all output, so `-l' is used to print nothing more than the
  2785. file name.")
  2786.  
  2787. (autoload (quote find-dired) "find-dired" "\
  2788. Run `find' and go into dired-mode on a buffer of the output.
  2789. The command run (after changing into DIR) is
  2790.  
  2791.     find . \\( ARGS \\) -ls" t nil)
  2792.  
  2793. (autoload (quote find-name-dired) "find-dired" "\
  2794. Search DIR recursively for files matching the globbing pattern PATTERN,
  2795. and run dired on those files.
  2796. PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
  2797. The command run (after changing into DIR) is
  2798.  
  2799.     find . -name 'PATTERN' -ls" t nil)
  2800.  
  2801. (autoload (quote find-grep-dired) "find-dired" "\
  2802. Find files in DIR containing a regexp ARG and start Dired on output.
  2803. The command run (after changing into DIR) is
  2804.  
  2805.     find . -exec grep -s ARG {} \\; -ls
  2806.  
  2807. Thus ARG can also contain additional grep options." t nil)
  2808.  
  2809. ;;;***
  2810.  
  2811. ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "flow-ctrl.el" (11288 50957))
  2812. ;;; Generated autoloads from flow-ctrl.el
  2813.  
  2814. (autoload (quote enable-flow-control) "flow-ctrl" "\
  2815. Enable use of flow control; let user type C-s as C-\\ and C-q as C-^." t nil)
  2816.  
  2817. (autoload (quote enable-flow-control-on) "flow-ctrl" "\
  2818. Enable flow control if using one of a specified set of terminal types.
  2819. Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
  2820. on VT-100 and H19 terminals.  When flow control is enabled,
  2821. you must type C-\\ to get the effect of a C-s, and type C-^
  2822. to get the effect of a C-q." nil nil)
  2823.  
  2824. ;;;***
  2825.  
  2826. ;;;### (autoloads (fortran-mode) "fortran" "fortran.el" (11285 51227))
  2827. ;;; Generated autoloads from fortran.el
  2828.  
  2829. (defvar fortran-tab-mode-default nil "\
  2830. *Default tabbing/carriage control style for empty files in Fortran mode.
  2831. A value of t specifies tab-digit style of continuation control.
  2832. A value of nil specifies that continuation lines are marked
  2833. with a character in column 6.")
  2834.  
  2835. (autoload (quote fortran-mode) "fortran" "\
  2836. Major mode for editing Fortran code.
  2837. \\[fortran-indent-line] indents the current Fortran line correctly. 
  2838. DO statements must not share a common CONTINUE.
  2839.  
  2840. Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
  2841.  
  2842. Key definitions:
  2843. \\{fortran-mode-map}
  2844.  
  2845. Variables controlling indentation style and extra features:
  2846.  
  2847.  comment-start
  2848.     Normally nil in Fortran mode.  If you want to use comments
  2849.     starting with `!', set this to the string \"!\".
  2850.  fortran-do-indent
  2851.     Extra indentation within do blocks.  (default 3)
  2852.  fortran-if-indent
  2853.     Extra indentation within if blocks.  (default 3)
  2854.  fortran-structure-indent
  2855.     Extra indentation within structure, union and map blocks.  (default 3)
  2856.  fortran-continuation-indent
  2857.     Extra indentation applied to continuation statements.  (default 5)
  2858.  fortran-comment-line-extra-indent
  2859.     Amount of extra indentation for text within full-line comments. (default 0)
  2860.  fortran-comment-indent-style
  2861.     nil    means don't change indentation of text in full-line comments,
  2862.     fixed  means indent that text at `fortran-comment-line-extra-indent' beyond
  2863.            the value of `fortran-minimum-statement-indent-fixed' (for fixed
  2864.            format continuation style) or `fortran-minimum-statement-indent-tab'
  2865.            (for TAB format continuation style).
  2866.     relative  means indent at `fortran-comment-line-extra-indent' beyond the
  2867.            indentation for a line of code.
  2868.     (default 'fixed)
  2869.  fortran-comment-indent-char
  2870.     Single-character string to be inserted instead of space for
  2871.     full-line comment indentation.  (default \" \")
  2872.  fortran-minimum-statement-indent-fixed
  2873.     Minimum indentation for Fortran statements in fixed format mode. (def.6)
  2874.  fortran-minimum-statement-indent-tab
  2875.     Minimum indentation for Fortran statements in TAB format mode. (default 9)
  2876.  fortran-line-number-indent
  2877.     Maximum indentation for line numbers.  A line number will get
  2878.     less than this much indentation if necessary to avoid reaching
  2879.     column 5.  (default 1)
  2880.  fortran-check-all-num-for-matching-do
  2881.     Non-nil causes all numbered lines to be treated as possible \"continue\"
  2882.     statements.  (default nil)
  2883.  fortran-blink-matching-if 
  2884.     From a Fortran ENDIF statement, blink the matching IF statement.
  2885.     (default nil)
  2886.  fortran-continuation-string
  2887.     Single-character string to be inserted in column 5 of a continuation
  2888.     line.  (default \"$\")
  2889.  fortran-comment-region
  2890.     String inserted by \\[fortran-comment-region] at start of each line in 
  2891.     region.  (default \"c$$$\")
  2892.  fortran-electric-line-number
  2893.     Non-nil causes line number digits to be moved to the correct column 
  2894.     as typed.  (default t)
  2895.  fortran-break-before-delimiters
  2896.     Non-nil causes `fortran-do-auto-fill' breaks lines before delimiters.
  2897.     (default t)
  2898.  fortran-startup-message
  2899.     Set to nil to inhibit message first time Fortran mode is used.
  2900.  
  2901. Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
  2902. with no args, if that value is non-nil." t nil)
  2903.  
  2904. ;;;***
  2905.  
  2906. ;;;### (autoloads (gnus) "gnus" "gnus.el" (11289 23134))
  2907. ;;; Generated autoloads from gnus.el
  2908.  
  2909. (autoload (quote gnus) "gnus" "\
  2910. Read network news.
  2911. If optional argument CONFIRM is non-nil, ask NNTP server." t nil)
  2912.  
  2913. ;;;***
  2914.  
  2915. ;;;### (autoloads (gnus-post-news) "gnuspost" "gnuspost.el" (11280 64406))
  2916. ;;; Generated autoloads from gnuspost.el
  2917.  
  2918. (fset (quote sendnews) (quote gnus-post-news))
  2919.  
  2920. (fset (quote postnews) (quote gnus-post-news))
  2921.  
  2922. (autoload (quote gnus-post-news) "gnuspost" "\
  2923. Begin editing a new USENET news article to be posted.
  2924. Type \\[describe-mode] once editing the article to get a list of commands." t nil)
  2925.  
  2926. ;;;***
  2927.  
  2928. ;;;### (autoloads (gomoku) "gomoku" "gomoku.el" (10948 54946))
  2929. ;;; Generated autoloads from gomoku.el
  2930.  
  2931. (autoload (quote gomoku) "gomoku" "\
  2932. Start a Gomoku game between you and Emacs.
  2933. If a game is in progress, this command allow you to resume it.
  2934. If optional arguments N and M are given, an N by M board is used.
  2935.  
  2936. You and Emacs play in turn by marking a free square.  You mark it with X
  2937. and Emacs marks it with O. The winner is the first to get five contiguous
  2938. marks horizontally, vertically or in diagonal.
  2939.  
  2940. You play by moving the cursor over the square you choose and hitting
  2941. \\<gomoku-mode-map>\\[gomoku-human-plays].
  2942. Use \\[describe-mode] for more info." t nil)
  2943.  
  2944. ;;;***
  2945.  
  2946. ;;;### (autoloads (set-gosmacs-bindings) "gosmacs" "gosmacs.el" (11190 10276))
  2947. ;;; Generated autoloads from gosmacs.el
  2948.  
  2949. (autoload (quote set-gosmacs-bindings) "gosmacs" "\
  2950. Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
  2951. Use \\[set-gnu-bindings] to restore previous global bindings." t nil)
  2952.  
  2953. ;;;***
  2954.  
  2955. ;;;### (autoloads (xdb dbx sdb gdb) "gud" "gud.el" (11294 14606))
  2956. ;;; Generated autoloads from gud.el
  2957.  
  2958. (autoload (quote gdb) "gud" "\
  2959. Run gdb on program FILE in buffer *gud-FILE*.
  2960. The directory containing FILE becomes the initial working directory
  2961. and source-file directory for your debugger." t nil)
  2962.  
  2963. (autoload (quote sdb) "gud" "\
  2964. Run sdb on program FILE in buffer *gud-FILE*.
  2965. The directory containing FILE becomes the initial working directory
  2966. and source-file directory for your debugger." t nil)
  2967.  
  2968. (autoload (quote dbx) "gud" "\
  2969. Run dbx on program FILE in buffer *gud-FILE*.
  2970. The directory containing FILE becomes the initial working directory
  2971. and source-file directory for your debugger." t nil)
  2972.  
  2973. (autoload (quote xdb) "gud" "\
  2974. Run xdb on program FILE in buffer *gud-FILE*.
  2975. The directory containing FILE becomes the initial working directory
  2976. and source-file directory for your debugger.
  2977.  
  2978. You can set the variable 'gud-xdb-directories' to a list of program source
  2979. directories if your program contains sources from more than one directory." t nil)
  2980.  
  2981. ;;;***
  2982.  
  2983. ;;;### (autoloads (hanoi) "hanoi" "hanoi.el" (11285 51253))
  2984. ;;; Generated autoloads from hanoi.el
  2985.  
  2986. (autoload (quote hanoi) "hanoi" "\
  2987. Towers of Hanoi diversion.  Argument is number of rings." t nil)
  2988.  
  2989. ;;;***
  2990.  
  2991. ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "helper.el" (10941 42412))
  2992. ;;; Generated autoloads from helper.el
  2993.  
  2994. (autoload (quote Helper-describe-bindings) "helper" "\
  2995. Describe local key bindings of current mode." t nil)
  2996.  
  2997. (autoload (quote Helper-help) "helper" "\
  2998. Provide help for current mode." t nil)
  2999.  
  3000. ;;;***
  3001.  
  3002. ;;;### (autoloads (hexl-find-file hexl-mode) "hexl" "hexl.el" (11270 30440))
  3003. ;;; Generated autoloads from hexl.el
  3004.  
  3005. (autoload (quote hexl-mode) "hexl" "\
  3006. \\<hexl-mode-map>
  3007. A major mode for editing binary files in hex dump format.
  3008.  
  3009. This function automatically converts a buffer into the hexl format
  3010. using the function `hexlify-buffer'.
  3011.  
  3012. Each line in the buffer has an \"address\" (displayed in hexadecimal)
  3013. representing the offset into the file that the characters on this line
  3014. are at and 16 characters from the file (displayed as hexadecimal
  3015. values grouped every 16 bits) and as their ASCII values.
  3016.  
  3017. If any of the characters (displayed as ASCII characters) are
  3018. unprintable (control or meta characters) they will be replaced as
  3019. periods.
  3020.  
  3021. If `hexl-mode' is invoked with an argument the buffer is assumed to be
  3022. in hexl format.
  3023.  
  3024. A sample format:
  3025.  
  3026.   HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f     ASCII-TEXT
  3027.   --------  ---- ---- ---- ---- ---- ---- ---- ----  ----------------
  3028.   00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64  This is hexl-mod
  3029.   00000010: 652e 2020 4561 6368 206c 696e 6520 7265  e.  Each line re
  3030.   00000020: 7072 6573 656e 7473 2031 3620 6279 7465  presents 16 byte
  3031.   00000030: 7320 6173 2068 6578 6164 6563 696d 616c  s as hexadecimal
  3032.   00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74   ASCII.and print
  3033.   00000050: 6162 6c65 2041 5343 4949 2063 6861 7261  able ASCII chara
  3034.   00000060: 6374 6572 732e 2020 416e 7920 636f 6e74  cters.  Any cont
  3035.   00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949  rol or non-ASCII
  3036.   00000080: 2063 6861 7261 6374 6572 730a 6172 6520   characters.are 
  3037.   00000090: 6469 7370 6c61 7965 6420 6173 2070 6572  displayed as per
  3038.   000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e  iods in the prin
  3039.   000000b0: 7461 626c 6520 6368 6172 6163 7465 7220  table character 
  3040.   000000c0: 7265 6769 6f6e 2e0a                      region..
  3041.  
  3042. Movement is as simple as movement in a normal emacs text buffer.  Most
  3043. cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
  3044. to move the cursor left, right, down, and up).
  3045.  
  3046. Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
  3047. also supported.
  3048.  
  3049. There are several ways to change text in hexl mode:
  3050.  
  3051. ASCII characters (character between space (0x20) and tilde (0x7E)) are
  3052. bound to self-insert so you can simply type the character and it will
  3053. insert itself (actually overstrike) into the buffer.
  3054.  
  3055. \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
  3056. it isn't bound to self-insert.  An octal number can be supplied in place
  3057. of another key to insert the octal number's ASCII representation.
  3058.  
  3059. \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
  3060. into the buffer at the current point.
  3061.  
  3062. \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
  3063. into the buffer at the current point.
  3064.  
  3065. \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
  3066. into the buffer at the current point.
  3067.  
  3068. \\[hexl-mode-exit] will exit hexl-mode.
  3069.  
  3070. Note: saving the file with any of the usual Emacs commands
  3071. will actually convert it back to binary format while saving.
  3072.  
  3073. You can use \\[hexl-find-file] to visit a file in hexl-mode.
  3074.  
  3075. \\[describe-bindings] for advanced commands." t nil)
  3076.  
  3077. (autoload (quote hexl-find-file) "hexl" "\
  3078. Edit file FILENAME in hexl-mode.
  3079. Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
  3080.  
  3081. ;;;***
  3082.  
  3083. ;;;### (autoloads (hide-ifdef-mode) "hideif" "hideif.el" (11285 51258))
  3084. ;;; Generated autoloads from hideif.el
  3085.  
  3086. (autoload (quote hide-ifdef-mode) "hideif" "\
  3087. Toggle Hide-Ifdef mode.  This is a minor mode, albeit a large one.
  3088. With ARG, turn Hide-Ifdef mode on iff arg is positive.
  3089. In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
  3090. would eliminate may be hidden from view.  Several variables affect
  3091. how the hiding is done:
  3092.  
  3093. hide-ifdef-env
  3094.     An association list of defined and undefined symbols for the
  3095.     current buffer.  Initially, the global value of `hide-ifdef-env'
  3096.     is used.
  3097.  
  3098. hide-ifdef-define-alist
  3099.     An association list of defined symbol lists.  
  3100.         Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
  3101.         and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
  3102.         from one of the lists in `hide-ifdef-define-alist'.
  3103.  
  3104. hide-ifdef-lines
  3105.     Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
  3106.     #endif lines when hiding.
  3107.  
  3108. hide-ifdef-initially
  3109.     Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
  3110.     is activated.
  3111.  
  3112. hide-ifdef-read-only
  3113.     Set to non-nil if you want to make buffers read only while hiding.
  3114.     After `show-ifdefs', read-only status is restored to previous value.
  3115.  
  3116. \\{hide-ifdef-mode-map}" t nil)
  3117.  
  3118. (defvar hide-ifdef-initially nil "\
  3119. *Non-nil if `hide-ifdefs' should be called when Hide-Ifdef mode
  3120. is first activated.")
  3121.  
  3122. (defvar hide-ifdef-read-only nil "\
  3123. *Set to non-nil if you want buffer to be read-only while hiding text.")
  3124.  
  3125. (defvar hide-ifdef-lines nil "\
  3126. *Set to t if you don't want to see the #ifX, #else, and #endif lines.")
  3127.  
  3128. ;;;***
  3129.  
  3130. ;;;### (autoloads (inferior-lisp) "inf-lisp" "inf-lisp.el" (11294 14427))
  3131. ;;; Generated autoloads from inf-lisp.el
  3132.  
  3133. (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\
  3134. *What not to save on inferior Lisp's input history.
  3135. Input matching this regexp is not saved on the input history in Inferior Lisp
  3136. mode.  Default is whitespace followed by 0 or 1 single-letter colon-keyword 
  3137. (as in :a, :c, etc.)")
  3138.  
  3139. (defvar inferior-lisp-program "lisp" "\
  3140. *Program name for invoking an inferior Lisp with for Inferior Lisp mode.")
  3141.  
  3142. (defvar inferior-lisp-load-command "(load \"%s\")
  3143. " "\
  3144. *Format-string for building a Lisp expression to load a file.
  3145. This format string should use `%s' to substitute a file name
  3146. and should result in a Lisp expression that will command the inferior Lisp
  3147. to load that file.  The default works acceptably on most Lisps.
  3148. The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\
  3149. \"
  3150. produces cosmetically superior output for this application,
  3151. but it works only in Common Lisp.")
  3152.  
  3153. (defvar inferior-lisp-prompt "^[^> ]*>+:? *" "\
  3154. Regexp to recognise prompts in the Inferior Lisp mode.
  3155. Defaults to \"^[^> ]*>+:? *\", which works pretty good for Lucid, kcl,
  3156. and franz.  This variable is used to initialize `comint-prompt-regexp' in the 
  3157. Inferior Lisp buffer.
  3158.  
  3159. More precise choices:
  3160. Lucid Common Lisp: \"^\\(>\\|\\(->\\)+\\) *\"
  3161. franz: \"^\\(->\\|<[0-9]*>:\\) *\"
  3162. kcl: \"^>+ *\"
  3163.  
  3164. This is a fine thing to set in your .emacs file.")
  3165.  
  3166. (defvar inferior-lisp-mode-hook (quote nil) "\
  3167. *Hook for customising Inferior Lisp mode.")
  3168.  
  3169. (autoload (quote inferior-lisp) "inf-lisp" "\
  3170. Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'.
  3171. If there is a process already running in `*inferior-lisp*', just switch
  3172. to that buffer.
  3173. With argument, allows you to edit the command line (default is value
  3174. of `inferior-lisp-program').  Runs the hooks from
  3175. `inferior-lisp-mode-hook' (after the `comint-mode-hook' is run).
  3176. (Type \\[describe-mode] in the process buffer for a list of commands.)" t nil)
  3177.  
  3178. (defalias (quote run-lisp) (quote inferior-lisp))
  3179.  
  3180. ;;;***
  3181.  
  3182. ;;;### (autoloads (Info-goto-emacs-key-command-node Info-goto-emacs-command-node info) "info" "info.el" (11284 6220))
  3183. ;;; Generated autoloads from info.el
  3184.  
  3185. (autoload (quote info) "info" "\
  3186. Enter Info, the documentation browser.
  3187. Optional argument FILE specifies the file to examine;
  3188. the default is the top-level directory of Info.
  3189.  
  3190. In interactive use, a prefix argument directs this command
  3191. to read a file name from the minibuffer." t nil)
  3192.  
  3193. (autoload (quote Info-goto-emacs-command-node) "info" "\
  3194. Go to the Info node in the Emacs manual for command COMMAND." t nil)
  3195.  
  3196. (autoload (quote Info-goto-emacs-key-command-node) "info" "\
  3197. Go to the Info node in the Emacs manual the command bound to KEY, a string.
  3198. Interactively, if the binding is execute-extended-command, a command is read." t nil)
  3199.  
  3200. ;;;***
  3201.  
  3202. ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "informat.el" (11136 13191))
  3203. ;;; Generated autoloads from informat.el
  3204.  
  3205. (autoload (quote Info-tagify) "informat" "\
  3206. Create or update Info-file tag table in current buffer." t nil)
  3207.  
  3208. (autoload (quote Info-split) "informat" "\
  3209. Split an info file into an indirect file plus bounded-size subfiles.
  3210. Each subfile will be up to 50,000 characters plus one node.
  3211.  
  3212. To use this command, first visit a large Info file that has a tag
  3213. table.  The buffer is modified into a (small) indirect info file which
  3214. should be saved in place of the original visited file.
  3215.  
  3216. The subfiles are written in the same directory the original file is
  3217. in, with names generated by appending `-' and a number to the original
  3218. file name.  The indirect file still functions as an Info file, but it
  3219. contains just the tag table and a directory of subfiles." t nil)
  3220.  
  3221. (autoload (quote Info-validate) "informat" "\
  3222. Check current buffer for validity as an Info file.
  3223. Check that every node pointer points to an existing node." t nil)
  3224.  
  3225. (autoload (quote batch-info-validate) "informat" "\
  3226. Runs `Info-validate' on the files remaining on the command line.
  3227. Must be used only with -batch, and kills Emacs on completion.
  3228. Each file will be processed even if an error occurred previously.
  3229. For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
  3230.  
  3231. ;;;***
  3232.  
  3233. ;;;### (autoloads (ispell-region ispell-word ispell) "ispell" "ispell.el" (11291 62895))
  3234. ;;; Generated autoloads from ispell.el
  3235.  
  3236. (autoload (quote ispell) "ispell" "\
  3237. Run Ispell over current buffer's visited file.
  3238. First the file is scanned for misspelled words, then Ispell
  3239. enters a loop with the following commands for every misspelled word:
  3240.  
  3241. DIGIT    Near miss selector.  If the misspelled word is close to
  3242.     some words in the dictionary, they are offered as near misses.
  3243. r    Replace.  Replace the word with a string you type.  Each word
  3244.     of your new string is also checked.
  3245. i    Insert.  Insert this word in your private dictionary (kept in
  3246.     `$HOME/ispell.words').
  3247. a    Accept.  Accept this word for the rest of this editing session,
  3248.      but don't put it in your private dictionary.
  3249. l    Lookup.  Look for a word in the dictionary by fast binary
  3250.     search, or search for a regular expression in the dictionary
  3251.     using grep.
  3252. SPACE    Accept the word this time, but complain if it is seen again.
  3253. q, \\[keyboard-quit]    Leave the command loop.  You can come back later with \\[ispell-next]." t nil)
  3254.  
  3255. (defalias (quote ispell-buffer) (quote ispell))
  3256.  
  3257. (autoload (quote ispell-word) "ispell" "\
  3258. Check the spelling of the word under the cursor.
  3259. See the command `ispell' for more information.
  3260. With a prefix argument, resume handling of the previous Ispell command." t nil)
  3261.  
  3262. (define-key esc-map "$" (quote ispell-word))
  3263.  
  3264. (autoload (quote ispell-region) "ispell" "\
  3265. Check the spelling for all of the words in the region." t nil)
  3266.  
  3267. ;;;***
  3268.  
  3269. ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" (11181 53296))
  3270. ;;; Generated autoloads from ledit.el
  3271.  
  3272. (defconst ledit-save-files t "\
  3273. *Non-nil means Ledit should save files before transferring to Lisp.")
  3274.  
  3275. (defconst ledit-go-to-lisp-string "%?lisp" "\
  3276. *Shell commands to execute to resume Lisp job.")
  3277.  
  3278. (defconst ledit-go-to-liszt-string "%?liszt" "\
  3279. *Shell commands to execute to resume Lisp compiler job.")
  3280.  
  3281. (autoload (quote ledit-mode) "ledit" "\
  3282. \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
  3283. Like Lisp mode, plus these special commands:
  3284.   \\[ledit-save-defun]    -- record defun at or after point
  3285.        for later transmission to Lisp job.
  3286.   \\[ledit-save-region] -- record region for later transmission to Lisp job.
  3287.   \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
  3288.   \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
  3289.        and transmit saved text.
  3290. \\{ledit-mode-map}
  3291. To make Lisp mode automatically change to Ledit mode,
  3292. do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
  3293.  
  3294. (autoload (quote ledit-from-lisp-mode) "ledit" nil nil nil)
  3295.  
  3296. ;;;***
  3297.  
  3298. ;;;### (autoloads (life) "life" "life.el" (11285 51286))
  3299. ;;; Generated autoloads from life.el
  3300.  
  3301. (autoload (quote life) "life" "\
  3302. Run Conway's Life simulation.
  3303. The starting pattern is randomly selected.  Prefix arg (optional first
  3304. arg non-nil from a program) is the number of seconds to sleep between
  3305. generations (this defaults to 1)." t nil)
  3306.  
  3307. ;;;***
  3308.  
  3309. ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (11215 17597))
  3310. ;;; Generated autoloads from loadhist.el
  3311.  
  3312. (autoload (quote unload-feature) "loadhist" "\
  3313. Unload the library that provided FEATURE, restoring all its autoloads.
  3314. If the feature is required by any other loaded code, and optional FORCE
  3315. is nil, raise an error." t nil)
  3316.  
  3317. ;;;***
  3318.  
  3319. ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "lpr.el" (11187 44821))
  3320. ;;; Generated autoloads from lpr.el
  3321.  
  3322. (defvar lpr-switches nil "\
  3323. *List of strings to pass as extra switch args to lpr when it is invoked.")
  3324.  
  3325. (defvar lpr-command (if (memq system-type (quote (usg-unix-v dgux-unix hpux silicon-graphics-unix))) "lp" "lpr") "\
  3326. *Shell command for printing a file")
  3327.  
  3328. (autoload (quote lpr-buffer) "lpr" "\
  3329. Print buffer contents as with Unix command `lpr'.
  3330. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3331.  
  3332. (autoload (quote print-buffer) "lpr" "\
  3333. Print buffer contents as with Unix command `lpr -p'.
  3334. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3335.  
  3336. (autoload (quote lpr-region) "lpr" "\
  3337. Print region contents as with Unix command `lpr'.
  3338. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3339.  
  3340. (autoload (quote print-region) "lpr" "\
  3341. Print region contents as with Unix command `lpr -p'.
  3342. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3343.  
  3344. ;;;***
  3345.  
  3346. ;;;### (autoloads (phases-of-moon) "lunar" "lunar.el" (11176 61371))
  3347. ;;; Generated autoloads from lunar.el
  3348.  
  3349. (autoload (quote phases-of-moon) "lunar" "\
  3350. Display the quarters of the moon for last month, this month, and next month.
  3351. If called with an optional prefix argument, prompts for month and year.
  3352.  
  3353. This function is suitable for execution in a .emacs file." t nil)
  3354.  
  3355. ;;;***
  3356.  
  3357. ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "macros.el" (11285 51300))
  3358. ;;; Generated autoloads from macros.el
  3359.  
  3360. (autoload (quote name-last-kbd-macro) "macros" "\
  3361. Assign a name to the last keyboard macro defined.
  3362. Argument SYMBOL is the name to define.
  3363. The symbol's function definition becomes the keyboard macro string.
  3364. Such a \"function\" cannot be called from Lisp, but it is a valid editor command." t nil)
  3365.  
  3366. (autoload (quote insert-kbd-macro) "macros" "\
  3367. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  3368. Optional second arg KEYS means also record the keys it is on
  3369. (this is the prefix argument, when calling interactively).
  3370.  
  3371. This Lisp code will, when executed, define the kbd macro with the same
  3372. definition it has now.  If you say to record the keys, the Lisp code
  3373. will also rebind those keys to the macro.  Only global key bindings
  3374. are recorded since executing this Lisp code always makes global
  3375. bindings.
  3376.  
  3377. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  3378. use this command, and then save the file." t nil)
  3379.  
  3380. (autoload (quote kbd-macro-query) "macros" "\
  3381. Query user during kbd macro execution.
  3382.   With prefix argument, enters recursive edit, reading keyboard
  3383. commands even within a kbd macro.  You can give different commands
  3384. each time the macro executes.
  3385.   Without prefix argument, asks whether to continue running the macro.
  3386. Your options are: \\<query-replace-map>
  3387. \\[act]    Finish this iteration normally and continue with the next.
  3388. \\[skip]    Skip the rest of this iteration, and start the next.
  3389. \\[exit]    Stop the macro entirely right now.
  3390. \\[recenter]    Redisplay the screen, then ask again.
  3391. \\[edit]    Enter recursive edit; ask again when you exit from that." t nil)
  3392.  
  3393. (autoload (quote apply-macro-to-region-lines) "macros" "\
  3394. For each complete line between point and mark, move to the beginning
  3395. of the line, and run the last keyboard macro.
  3396.  
  3397. When called from lisp, this function takes two arguments TOP and
  3398. BOTTOM, describing the current region.  TOP must be before BOTTOM.
  3399. The optional third argument MACRO specifies a keyboard macro to
  3400. execute.
  3401.  
  3402. This is useful for quoting or unquoting included text, adding and
  3403. removing comments, or producing tables where the entries are regular.
  3404.  
  3405. For example, in Usenet articles, sections of text quoted from another
  3406. author are indented, or have each line start with `>'.  To quote a
  3407. section of text, define a keyboard macro which inserts `>', put point
  3408. and mark at opposite ends of the quoted section, and use
  3409. `\\[apply-macro-to-region-lines]' to mark the entire section.
  3410.  
  3411. Suppose you wanted to build a keyword table in C where each entry
  3412. looked like this:
  3413.  
  3414.     { \"foo\", foo_data, foo_function }, 
  3415.     { \"bar\", bar_data, bar_function },
  3416.     { \"baz\", baz_data, baz_function },
  3417.  
  3418. You could enter the names in this format:
  3419.  
  3420.     foo
  3421.     bar
  3422.     baz
  3423.  
  3424. and write a macro to massage a word into a table entry:
  3425.  
  3426.     \\C-x (
  3427.        \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
  3428.     \\C-x )
  3429.  
  3430. and then select the region of un-tablified names and use
  3431. `\\[apply-macro-to-region-lines]' to build the table from the names.
  3432. " t nil)
  3433.  
  3434. (define-key ctl-x-map "q" (quote kbd-macro-query))
  3435.  
  3436. ;;;***
  3437.  
  3438. ;;;### (autoloads nil "mail-utils" "mail-utils.el" (11267 45112))
  3439. ;;; Generated autoloads from mail-utils.el
  3440.  
  3441. (defvar mail-use-rfc822 nil "\
  3442. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  3443. Otherwise, (the default) use a smaller, somewhat faster, and
  3444. often correct parser.")
  3445.  
  3446. ;;;***
  3447.  
  3448. ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) "mailabbrev" "mailabbrev.el" (11294 13814))
  3449. ;;; Generated autoloads from mailabbrev.el
  3450.  
  3451. (autoload (quote mail-abbrevs-setup) "mailabbrev" nil nil nil)
  3452.  
  3453. (autoload (quote build-mail-abbrevs) "mailabbrev" "\
  3454. Read mail aliases from `~/.mailrc' file and set `mail-abbrevs'." nil nil)
  3455.  
  3456. (autoload (quote define-mail-abbrev) "mailabbrev" "\
  3457. Define NAME as a mail-abbrev that translates to DEFINITION.
  3458. If DEFINITION contains multiple addresses, separate them with commas." t nil)
  3459.  
  3460. ;;;***
  3461.  
  3462. ;;;### (autoloads (define-mail-alias) "mailalias" "mailalias.el" (11294 13866))
  3463. ;;; Generated autoloads from mailalias.el
  3464.  
  3465. (autoload (quote define-mail-alias) "mailalias" "\
  3466. Define NAME as a mail alias that translates to DEFINITION.
  3467. This means that sending a message to NAME will actually send to DEFINITION.
  3468. DEFINITION can be one or more mail addresses separated by commas." t nil)
  3469.  
  3470. ;;;***
  3471.  
  3472. ;;;### (autoloads (makefile-mode) "makefile" "makefile.el" (11285 53103))
  3473. ;;; Generated autoloads from makefile.el
  3474.  
  3475. (autoload (quote makefile-mode) "makefile" "\
  3476. Major mode for editing Makefiles.
  3477. Calling this function invokes the function(s) \"makefile-mode-hook\" before
  3478. doing anything else.
  3479.  
  3480. \\{makefile-mode-map}
  3481.  
  3482. In the browser, use the following keys:
  3483.  
  3484. \\{makefile-browser-map}
  3485.  
  3486. makefile-mode can be configured by modifying the following
  3487. variables:
  3488.  
  3489. makefile-mode-name:
  3490.     The \"pretty name\" of makefile-mode, as it
  3491.     appears in the modeline.
  3492.  
  3493. makefile-browser-buffer-name:
  3494.     Name of the macro- and target browser buffer.
  3495.  
  3496. makefile-target-colon:
  3497.     The string that gets appended to all target names
  3498.     inserted by makefile-insert-target.
  3499.     \":\" or \"::\" are quite common values.
  3500.  
  3501. makefile-macro-assign:
  3502.    The string that gets appended to all macro names
  3503.    inserted by makefile-insert-macro.
  3504.    The normal value should be \" = \", since this is what
  3505.    standard make expects. However, newer makes such as dmake
  3506.    allow a larger variety of different macro assignments, so you
  3507.    might prefer to use \" += \" or \" := \" .
  3508.  
  3509. makefile-tab-after-target-colon:
  3510.    If you want a TAB (instead of a space) to be appended after the
  3511.    target colon, then set this to a non-nil value.
  3512.  
  3513. makefile-browser-leftmost-column:
  3514.    Number of blanks to the left of the browser selection mark.
  3515.  
  3516. makefile-browser-cursor-column:
  3517.    Column in which the cursor is positioned when it moves
  3518.    up or down in the browser.
  3519.  
  3520. makefile-browser-selected-mark:
  3521.    String used to mark selected entries in the browser.
  3522.  
  3523. makefile-browser-unselected-mark:
  3524.    String used to mark unselected entries in the browser.
  3525.  
  3526. makefile-browser-auto-advance-after-selection-p:
  3527.    If this variable is set to a non-nil value the cursor
  3528.    will automagically advance to the next line after an item
  3529.    has been selected in the browser.
  3530.  
  3531. makefile-pickup-everything-picks-up-filenames-p:
  3532.    If this variable is set to a non-nil value then
  3533.    makefile-pickup-everything also picks up filenames as targets
  3534.    (i.e. it calls makefile-find-filenames-as-targets), otherwise
  3535.    filenames are omitted.
  3536.  
  3537. makefile-cleanup-continuations-p:
  3538.    If this variable is set to a non-nil value then makefile-mode
  3539.    will assure that no line in the file ends with a backslash
  3540.    (the continuation character) followed by any whitespace.
  3541.    This is done by silently removing the trailing whitespace, leaving
  3542.    the backslash itself intact.
  3543.    IMPORTANT: Please note that enabling this option causes makefile-mode
  3544.    to MODIFY A FILE WITHOUT YOUR CONFIRMATION when 'it seems necessary'.
  3545.  
  3546. makefile-browser-hook:
  3547.    A function or list of functions to be called just before the
  3548.    browser is entered. This is executed in the makefile buffer.
  3549.  
  3550. makefile-special-targets-list:
  3551.    List of special targets. You will be offered to complete
  3552.    on one of those in the minibuffer whenever you enter a \".\"
  3553.    at the beginning of a line in makefile-mode." t nil)
  3554.  
  3555. ;;;***
  3556.  
  3557. ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (11181 53304))
  3558. ;;; Generated autoloads from makesum.el
  3559.  
  3560. (autoload (quote make-command-summary) "makesum" "\
  3561. Make a summary of current key bindings in the buffer *Summary*.
  3562. Previous contents of that buffer are killed first." t nil)
  3563.  
  3564. ;;;***
  3565.  
  3566. ;;;### (autoloads (manual-entry) "man" "man.el" (11291 27435))
  3567. ;;; Generated autoloads from man.el
  3568.  
  3569. (autoload (quote manual-entry) "man" "\
  3570. Get a Un*x manual page and put it in a buffer.
  3571. This command is the top-level command in the man package. It runs a Un*x
  3572. command to retrieve and clean a manpage in the background and places the
  3573. results in a Man-mode (manpage browsing) buffer. See variable
  3574. Man-notify for what happens when the buffer is ready.
  3575. Universal argument ARG, is passed to Man-getpage-in-background." t nil)
  3576.  
  3577. ;;;***
  3578.  
  3579. ;;;### (autoloads (map-y-or-n-p) "map-ynp" "map-ynp.el" (11253 12506))
  3580. ;;; Generated autoloads from map-ynp.el
  3581.  
  3582. (autoload (quote map-y-or-n-p) "map-ynp" "\
  3583. Ask a series of boolean questions.
  3584. Takes args PROMPTER ACTOR LIST, and optional args HELP and ACTION-ALIST.
  3585.  
  3586. LIST is a list of objects, or a function of no arguments to return the next
  3587. object or nil.
  3588.  
  3589. If PROMPTER is a string, the prompt is (format PROMPTER OBJECT).  If not
  3590. a string, PROMPTER is a function of one arg (an object from LIST), which
  3591. returns a string to be used as the prompt for that object.  If the return
  3592. value is not a string, it is eval'd to get the answer; it may be nil to
  3593. ignore the object, t to act on the object without asking the user, or a
  3594. form to do a more complex prompt.
  3595.  
  3596. ACTOR is a function of one arg (an object from LIST),
  3597. which gets called with each object that the user answers `yes' for.
  3598.  
  3599. If HELP is given, it is a list (OBJECT OBJECTS ACTION),
  3600. where OBJECT is a string giving the singular noun for an elt of LIST;
  3601. OBJECTS is the plural noun for elts of LIST, and ACTION is a transitive
  3602. verb describing ACTOR.  The default is (\"object\" \"objects\" \"act on\").
  3603.  
  3604. At the prompts, the user may enter y, Y, or SPC to act on that object;
  3605. n, N, or DEL to skip that object; ! to act on all following objects;
  3606. ESC or q to exit (skip all following objects); . (period) to act on the
  3607. current object and then exit; or \\[help-command] to get help.
  3608.  
  3609. If ACTION-ALIST is given, it is an alist (KEY FUNCTION HELP) of extra keys
  3610. that will be accepted.  KEY is a character; FUNCTION is a function of one
  3611. arg (an object from LIST); HELP is a string.  When the user hits KEY,
  3612. FUNCTION is called.  If it returns non-nil, the object is considered
  3613. \"acted upon\", and the next object from LIST is processed.  If it returns
  3614. nil, the prompt is repeated for the same object.
  3615.  
  3616. This function uses `query-replace-map' to define the standard responses,
  3617. but not all of the responses which `query-replace' understands
  3618. are meaningful here.
  3619.  
  3620. Returns the number of actions taken." nil nil)
  3621.  
  3622. ;;;***
  3623.  
  3624. ;;;### (autoloads (mh-smail mh-rmail) "mh-e" "mh-e.el" (11285 53112))
  3625. ;;; Generated autoloads from mh-e.el
  3626.  
  3627. (autoload (quote mh-rmail) "mh-e" "\
  3628. Inc(orporate) new mail (no arg) or scan a MH mail box (arg given).
  3629. This front end uses the MH mail system, which uses different conventions
  3630. from the usual mail system." t nil)
  3631.  
  3632. (autoload (quote mh-smail) "mh-e" "\
  3633. Compose and send mail with the MH mail system." t nil)
  3634.  
  3635. ;;;***
  3636.  
  3637. ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "mlconvert.el" (11285 51423))
  3638. ;;; Generated autoloads from mlconvert.el
  3639.  
  3640. (autoload (quote convert-mocklisp-buffer) "mlconvert" "\
  3641. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
  3642.  
  3643. ;;;***
  3644.  
  3645. ;;;### (autoloads (modula-2-mode) "modula2" "modula2.el" (11181 53306))
  3646. ;;; Generated autoloads from modula2.el
  3647.  
  3648. (autoload (quote modula-2-mode) "modula2" "\
  3649. This is a mode intended to support program development in Modula-2.
  3650. All control constructs of Modula-2 can be reached by typing C-c
  3651. followed by the first character of the construct.
  3652. \\<m2-mode-map>
  3653.   \\[m2-begin] begin         \\[m2-case] case
  3654.   \\[m2-definition] definition    \\[m2-else] else
  3655.   \\[m2-for] for           \\[m2-header] header
  3656.   \\[m2-if] if            \\[m2-module] module
  3657.   \\[m2-loop] loop          \\[m2-or] or
  3658.   \\[m2-procedure] procedure     Control-c Control-w with
  3659.   \\[m2-record] record        \\[m2-stdio] stdio
  3660.   \\[m2-type] type          \\[m2-until] until
  3661.   \\[m2-var] var           \\[m2-while] while
  3662.   \\[m2-export] export        \\[m2-import] import
  3663.   \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
  3664.   \\[suspend-emacs] suspend Emacs     \\[m2-toggle] toggle
  3665.   \\[m2-compile] compile           \\[m2-next-error] next-error
  3666.   \\[m2-link] link
  3667.  
  3668.    `m2-indent' controls the number of spaces for each indentation.
  3669.    `m2-compile-command' holds the command to compile a Modula-2 program.
  3670.    `m2-link-command' holds the command to link a Modula-2 program." t nil)
  3671.  
  3672. ;;;***
  3673.  
  3674. ;;;### (autoloads (mpuz) "mpuz" "mpuz.el" (11285 51427))
  3675. ;;; Generated autoloads from mpuz.el
  3676.  
  3677. (autoload (quote mpuz) "mpuz" "\
  3678. Multiplication puzzle with GNU Emacs." t nil)
  3679.  
  3680. ;;;***
  3681.  
  3682. ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "novice.el" (11261 24403))
  3683. ;;; Generated autoloads from novice.el
  3684.  
  3685. (setq disabled-command-hook (quote disabled-command-hook))
  3686.  
  3687. (autoload (quote disabled-command-hook) "novice" nil nil nil)
  3688.  
  3689. (autoload (quote enable-command) "novice" "\
  3690. Allow COMMAND to be executed without special confirmation from now on.
  3691. The user's .emacs file is altered so that this will apply
  3692. to future sessions." t nil)
  3693.  
  3694. (autoload (quote disable-command) "novice" "\
  3695. Require special confirmation to execute COMMAND from now on.
  3696. The user's .emacs file is altered so that this will apply
  3697. to future sessions." t nil)
  3698.  
  3699. ;;;***
  3700.  
  3701. ;;;### (autoloads (nroff-mode) "nroff-mode" "nroff-mode.el" (11267 60509))
  3702. ;;; Generated autoloads from nroff-mode.el
  3703.  
  3704. (autoload (quote nroff-mode) "nroff-mode" "\
  3705. Major mode for editing text intended for nroff to format.
  3706. \\{nroff-mode-map}
  3707. Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
  3708. Also, try `nroff-electric-mode', for automatically inserting
  3709. closing requests for requests that are used in matched pairs." t nil)
  3710.  
  3711. ;;;***
  3712.  
  3713. ;;;### (autoloads (edit-options list-options) "options" "options.el" (11181 53232))
  3714. ;;; Generated autoloads from options.el
  3715.  
  3716. (autoload (quote list-options) "options" "\
  3717. Display a list of Emacs user options, with values and documentation." t nil)
  3718.  
  3719. (autoload (quote edit-options) "options" "\
  3720. Edit a list of Emacs user option values.
  3721. Selects a buffer containing such a list,
  3722. in which there are commands to set the option values.
  3723. Type \\[describe-mode] in that buffer for a list of commands." t nil)
  3724.  
  3725. ;;;***
  3726.  
  3727. ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" (11282 47668))
  3728. ;;; Generated autoloads from outline.el
  3729.  
  3730. (autoload (quote outline-mode) "outline" "\
  3731. Set major mode for editing outlines with selective display.
  3732. Headings are lines which start with asterisks: one for major headings,
  3733. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  3734.  
  3735. Body text or subheadings under a heading can be made temporarily
  3736. invisible, or visible again.  Invisible lines are attached to the end 
  3737. of the heading, so they move with it, if the line is killed and yanked
  3738. back.  A heading with text hidden under it is marked with an ellipsis (...).
  3739.  
  3740. Commands:\\<outline-mode-map>
  3741. \\[outline-next-visible-heading]   outline-next-visible-heading      move by visible headings
  3742. \\[outline-previous-visible-heading]   outline-previous-visible-heading
  3743. \\[outline-forward-same-level]   outline-forward-same-level        similar but skip subheadings
  3744. \\[outline-backward-same-level]   outline-backward-same-level
  3745. \\[outline-up-heading]   outline-up-heading            move from subheading to heading
  3746.  
  3747. M-x hide-body    make all text invisible (not headings).
  3748. M-x show-all    make everything in buffer visible.
  3749.  
  3750. The remaining commands are used when point is on a heading line.
  3751. They apply to some of the body or subheadings of that heading.
  3752. \\[hide-subtree]   hide-subtree    make body and subheadings invisible.
  3753. \\[show-subtree]   show-subtree    make body and subheadings visible.
  3754. \\[show-children]   show-children    make direct subheadings visible.
  3755.          No effect on body, or subheadings 2 or more levels down.
  3756.          With arg N, affects subheadings N levels down.
  3757. M-x hide-entry       make immediately following body invisible.
  3758. M-x show-entry       make it visible.
  3759. M-x hide-leaves       make body under heading and under its subheadings invisible.
  3760.              The subheadings remain visible.
  3761. M-x show-branches  make all subheadings at all levels visible.
  3762.  
  3763. The variable `outline-regexp' can be changed to control what is a heading.
  3764. A line is a heading if `outline-regexp' matches something at the
  3765. beginning of the line.  The longer the match, the deeper the level.
  3766.  
  3767. Turning on outline mode calls the value of `text-mode-hook' and then of
  3768. `outline-mode-hook', if they are non-nil." t nil)
  3769.  
  3770. (autoload (quote outline-minor-mode) "outline" "\
  3771. Toggle Outline minor mode.
  3772. With arg, turn Outline minor mode on if arg is positive, off otherwise.
  3773. See the command `outline-mode' for more information on this mode." t nil)
  3774.  
  3775. ;;;***
  3776.  
  3777. ;;;### (autoloads (picture-mode) "picture" "picture.el" (11292 51488))
  3778. ;;; Generated autoloads from picture.el
  3779.  
  3780. (autoload (quote picture-mode) "picture" "\
  3781. Switch to Picture mode, in which a quarter-plane screen model is used.
  3782. Printing characters replace instead of inserting themselves with motion
  3783. afterwards settable by these commands:
  3784.   C-c <      Move left after insertion.
  3785.   C-c >      Move right after insertion.
  3786.   C-c ^      Move up after insertion.
  3787.   C-c .      Move down after insertion.
  3788.   C-c `      Move northwest (nw) after insertion.
  3789.   C-c '      Move northeast (ne) after insertion.
  3790.   C-c /      Move southwest (sw) after insertion.
  3791.   C-c \\   Move southeast (se) after insertion.
  3792. The current direction is displayed in the mode line.  The initial
  3793. direction is right.  Whitespace is inserted and tabs are changed to
  3794. spaces when required by movement.  You can move around in the buffer
  3795. with these commands:
  3796.   \\[picture-move-down]      Move vertically to SAME column in previous line.
  3797.   \\[picture-move-up]      Move vertically to SAME column in next line.
  3798.   \\[picture-end-of-line]      Move to column following last non-whitespace character.
  3799.   \\[picture-forward-column]      Move right inserting spaces if required.
  3800.   \\[picture-backward-column]      Move left changing tabs to spaces if required.
  3801.   C-c C-f Move in direction of current picture motion.
  3802.   C-c C-b Move in opposite direction of current picture motion.
  3803.   Return  Move to beginning of next line.
  3804. You can edit tabular text with these commands:
  3805.   M-Tab      Move to column beneath (or at) next interesting character.
  3806.         `Indents' relative to a previous line.
  3807.   Tab      Move to next stop in tab stop list.
  3808.   C-c Tab Set tab stops according to context of this line.
  3809.         With ARG resets tab stops to default (global) value.
  3810.         See also documentation of variable    picture-tab-chars
  3811.         which defines \"interesting character\".  You can manually
  3812.         change the tab stop list with command \\[edit-tab-stops].
  3813. You can manipulate text with these commands:
  3814.   C-d      Clear (replace) ARG columns after point without moving.
  3815.   C-c C-d Delete char at point - the command normally assigned to C-d.
  3816.   \\[picture-backward-clear-column]  Clear (replace) ARG columns before point, moving back over them.
  3817.   \\[picture-clear-line]      Clear ARG lines, advancing over them.     The cleared
  3818.         text is saved in the kill ring.
  3819.   \\[picture-open-line]      Open blank line(s) beneath current line.
  3820. You can manipulate rectangles with these commands:
  3821.   C-c C-k Clear (or kill) a rectangle and save it.
  3822.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  3823.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  3824.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  3825.   \\[copy-rectangle-to-register]   Copies a rectangle to a register.
  3826.   \\[advertised-undo]   Can undo effects of rectangle overlay commands
  3827.         commands if invoked soon enough.
  3828. You can return to the previous mode with:
  3829.   C-c C-c Which also strips trailing whitespace from every line.
  3830.         Stripping is suppressed by supplying an argument.
  3831.  
  3832. Entry to this mode calls the value of  picture-mode-hook  if non-nil.
  3833.  
  3834. Note that Picture mode commands will work outside of Picture mode, but
  3835. they are not defaultly assigned to keys." t nil)
  3836.  
  3837. (defalias (quote edit-picture) (quote picture-mode))
  3838.  
  3839. ;;;***
  3840.  
  3841. ;;;### (autoloads (run-prolog prolog-mode) "prolog" "prolog.el" (11181 53308))
  3842. ;;; Generated autoloads from prolog.el
  3843.  
  3844. (autoload (quote prolog-mode) "prolog" "\
  3845. Major mode for editing Prolog code for Prologs.
  3846. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  3847. Commands:
  3848. \\{prolog-mode-map}
  3849. Entry to this mode calls the value of `prolog-mode-hook'
  3850. if that value is non-nil." t nil)
  3851.  
  3852. (autoload (quote run-prolog) "prolog" "\
  3853. Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
  3854.  
  3855. ;;;***
  3856.  
  3857. ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "rect.el" (11237 13138))
  3858. ;;; Generated autoloads from rect.el
  3859.  
  3860. (autoload (quote delete-rectangle) "rect" "\
  3861. Delete (don't save) text in rectangle with point and mark as corners.
  3862. The same range of columns is deleted in each line starting with the line
  3863. where the region begins and ending with the line where the region ends." t nil)
  3864.  
  3865. (autoload (quote delete-extract-rectangle) "rect" "\
  3866. Delete contents of rectangle and return it as a list of strings.
  3867. Arguments START and END are the corners of the rectangle.
  3868. The value is list of strings, one for each line of the rectangle." nil nil)
  3869.  
  3870. (autoload (quote extract-rectangle) "rect" "\
  3871. Return contents of rectangle with corners at START and END.
  3872. Value is list of strings, one for each line of the rectangle." nil nil)
  3873.  
  3874. (autoload (quote kill-rectangle) "rect" "\
  3875. Delete rectangle with corners at point and mark; save as last killed one.
  3876. Calling from program, supply two args START and END, buffer positions.
  3877. But in programs you might prefer to use `delete-extract-rectangle'." t nil)
  3878.  
  3879. (autoload (quote yank-rectangle) "rect" "\
  3880. Yank the last killed rectangle with upper left corner at point." t nil)
  3881.  
  3882. (autoload (quote insert-rectangle) "rect" "\
  3883. Insert text of RECTANGLE with upper left corner at point.
  3884. RECTANGLE's first line is inserted at point, its second
  3885. line is inserted at a point vertically under point, etc.
  3886. RECTANGLE should be a list of strings.
  3887. After this command, the mark is at the upper left corner
  3888. and point is at the lower right corner." nil nil)
  3889.  
  3890. (autoload (quote open-rectangle) "rect" "\
  3891. Blank out rectangle with corners at point and mark, shifting text right.
  3892. The text previously in the region is not overwritten by the blanks,
  3893. but instead winds up to the right of the rectangle." t nil)
  3894.  
  3895. (autoload (quote string-rectangle) "rect" "\
  3896. Insert STRING on each line of the region-rectangle, shifting text right.
  3897. The left edge of the rectangle specifies the column for insertion.
  3898. This command does not delete or overwrite any existing text.
  3899.  
  3900. Called from a program, takes three args; START, END and STRING." t nil)
  3901.  
  3902. (autoload (quote clear-rectangle) "rect" "\
  3903. Blank out rectangle with corners at point and mark.
  3904. The text previously in the region is overwritten by the blanks.
  3905. When called from a program, requires two args which specify the corners." t nil)
  3906.  
  3907. ;;;***
  3908.  
  3909. ;;;### (autoloads (reposition-window) "reposition" "reposition.el" (11185 15878))
  3910. ;;; Generated autoloads from reposition.el
  3911.  
  3912. (autoload (quote reposition-window) "reposition" "\
  3913. Make the current definition and/or comment visible.
  3914. Further invocations move it to the top of the window or toggle the
  3915. visibility of comments that precede it.
  3916.   Point is left unchanged unless prefix ARG is supplied.
  3917.   If the definition is fully onscreen, it is moved to the top of the
  3918. window.  If it is partly offscreen, the window is scrolled to get the
  3919. definition (or as much as will fit) onscreen, unless point is in a comment
  3920. which is also partly offscreen, in which case the scrolling attempts to get
  3921. as much of the comment onscreen as possible.
  3922.   Initially `reposition-window' attempts to make both the definition and
  3923. preceding comments visible.  Further invocations toggle the visibility of
  3924. the comment lines.
  3925.   If ARG is non-nil, point may move in order to make the whole defun
  3926. visible (if only part could otherwise be made so), to make the defun line
  3927. visible (if point is in code and it could not be made so, or if only
  3928. comments, including the first comment line, are visible), or to make the
  3929. first comment line visible (if point is in a comment)." t nil)
  3930.  
  3931. (define-key esc-map " " (quote reposition-window))
  3932.  
  3933. ;;;***
  3934.  
  3935. ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (11236 37830))
  3936. ;;; Generated autoloads from resume.el
  3937.  
  3938. (autoload (quote resume-suspend-hook) "resume" "\
  3939. Clear out the file used for transmitting args when Emacs resumes." nil nil)
  3940.  
  3941. ;;;***
  3942.  
  3943. ;;;### (autoloads (make-ring ring-p) "ring" "ring.el" (11227 4056))
  3944. ;;; Generated autoloads from ring.el
  3945.  
  3946. (autoload (quote ring-p) "ring" "\
  3947. Returns t if X is a ring; nil otherwise." nil nil)
  3948.  
  3949. (autoload (quote make-ring) "ring" "\
  3950. Make a ring that can contain SIZE elements." nil nil)
  3951.  
  3952. ;;;***
  3953.  
  3954. ;;;### (autoloads (rlogin-delchar-or-send-Ctrl-D rlogin-send-Ctrl-backslash rlogin-send-Ctrl-Z rlogin-send-Ctrl-C rlogin-mode rlogin-password rlogin-with-args rlogin) "rlogin" "rlogin.el" (11261 49048))
  3955. ;;; Generated autoloads from rlogin.el
  3956.  
  3957. (defvar rlogin-program "rlogin" "\
  3958. *Name of program to invoke rlogin")
  3959.  
  3960. (defvar rlogin-explicit-args nil "\
  3961. *List of arguments to pass to rlogin on the command line.")
  3962.  
  3963. (defvar rlogin-mode-hook nil "\
  3964. *Hooks to run after setting current buffer to rlogin-mode.")
  3965.  
  3966. (defvar rlogin-process-connection-type nil "\
  3967. *If non-`nil', use a pty for the local rlogin process.  
  3968. If `nil', use a pipe (if pipes are supported on the local system).  
  3969.  
  3970. Generally it is better not to waste ptys on systems which have a static
  3971. number of them.  On the other hand, some implementations of `rlogin' assume
  3972. a pty is being used, and errors will result from using a pipe instead.")
  3973.  
  3974. (defvar rlogin-password-paranoia nil "\
  3975. *If non-`nil', query user for a password in the minibuffer when a Password: prompt appears.
  3976. It's also possible to selectively enter passwords without echoing them in
  3977. the minibuffer using the command `rlogin-password' explicitly.")
  3978.  
  3979. (defvar rlogin-mode-map (quote nil))
  3980.  
  3981. (autoload (quote rlogin) "rlogin" "\
  3982. Open a network login connection to HOST via the `rlogin' program.
  3983. Input is sent line-at-a-time to the remote connection.
  3984.  
  3985. Communication with HOST is recorded in a buffer *rlogin-HOST*.
  3986. If a prefix argument is given and the buffer *rlogin-HOST* already exists,
  3987. a new buffer with a different connection will be made. 
  3988.  
  3989. The variable `rlogin-program' contains the name of the actual program to
  3990. run.  It can be a relative or absolute path. 
  3991.  
  3992. The variable `rlogin-explicit-args' is a list of arguments to give to
  3993. the rlogin when starting." t nil)
  3994.  
  3995. (autoload (quote rlogin-with-args) "rlogin" "\
  3996. Open a new rlogin connection to HOST, even if one already exists. 
  3997. String ARGS is given as arguments to the `rlogin' program, overriding the
  3998. value of `rlogin-explicit-args'." t nil)
  3999.  
  4000. (autoload (quote rlogin-password) "rlogin" "\
  4001. Read a password and send it to an rlogin session.
  4002. For each character typed, a `*' is echoed in the minibuffer.
  4003. End with RET, LFD, or ESC.  DEL or C-h rubs out.  C-u kills line.
  4004. C-g aborts attempt to read and send password. 
  4005.  
  4006. Optional argument PROC is the process to which the password should be sent.
  4007. If not provided, send to the process in the current buffer.  This argument
  4008. is intended primarily for use by `rlogin-filter'." t nil)
  4009.  
  4010. (autoload (quote rlogin-mode) "rlogin" "\
  4011. Set major-mode for rlogin sessions. 
  4012. If `rlogin-mode-hook' is set, run it." t nil)
  4013.  
  4014. (autoload (quote rlogin-send-Ctrl-C) "rlogin" nil t nil)
  4015.  
  4016. (autoload (quote rlogin-send-Ctrl-Z) "rlogin" nil t nil)
  4017.  
  4018. (autoload (quote rlogin-send-Ctrl-backslash) "rlogin" nil t nil)
  4019.  
  4020. (autoload (quote rlogin-delchar-or-send-Ctrl-D) "rlogin" "\
  4021. Delete ARG characters forward, or send a C-d to process if at end of
  4022. buffer." t nil)
  4023.  
  4024. ;;;***
  4025.  
  4026. ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail.el" (11288 623))
  4027. ;;; Generated autoloads from rmail.el
  4028.  
  4029. (defvar rmail-dont-reply-to-names nil "\
  4030. *A regexp specifying names to prune of reply to messages.
  4031. nil means dont reply to yourself.")
  4032.  
  4033. (defvar rmail-default-dont-reply-to-names "info-" "\
  4034. A regular expression specifying part of the value of the default value of
  4035. the variable `rmail-dont-reply-to-names', for when the user does not set
  4036. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  4037. value is the user's name.)
  4038. It is useful to set this variable in the site customisation file.")
  4039.  
  4040. (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^message-id:\\|^summary-line:" "\
  4041. *Gubbish headers one would rather not see.")
  4042.  
  4043. (defvar rmail-delete-after-output nil "\
  4044. *Non-nil means automatically delete a message that is copied to a file.")
  4045.  
  4046. (defvar rmail-primary-inbox-list nil "\
  4047. *List of files which are inboxes for user's primary mail file `~/RMAIL'.
  4048. `nil' means the default, which is (\"/usr/spool/mail/$USER\")
  4049. (the name varies depending on the operating system,
  4050. and the value of the environment variable MAIL overrides it).")
  4051.  
  4052. (autoload (quote rmail) "rmail" "\
  4053. Read and edit incoming mail.
  4054. Moves messages into file named by  rmail-file-name  (a babyl format file)
  4055.  and edits that file in RMAIL Mode.
  4056. Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
  4057.  
  4058. May be called with filename as argument; then performs rmail editing on
  4059. that file, but does not copy any new mail into the file." t nil)
  4060.  
  4061. (autoload (quote rmail-mode) "rmail" "\
  4062. Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
  4063. All normal editing commands are turned off.
  4064. Instead, these commands are available:
  4065.  
  4066. \\[rmail-beginning-of-message]    Move point to front of this message (same as \\[beginning-of-buffer]).
  4067. \\[scroll-up]    Scroll to next screen of this message.
  4068. \\[scroll-down]    Scroll to previous screen of this message.
  4069. \\[rmail-next-undeleted-message]    Move to Next non-deleted message.
  4070. \\[rmail-previous-undeleted-message]    Move to Previous non-deleted message.
  4071. \\[rmail-next-message]    Move to Next message whether deleted or not.
  4072. \\[rmail-previous-message]    Move to Previous message whether deleted or not.
  4073. \\[rmail-first-message]    Move to the first message in Rmail file.
  4074. \\[rmail-last-message]    Move to the last message in Rmail file.
  4075. \\[rmail-show-message]    Jump to message specified by numeric position in file.
  4076. \\[rmail-search]    Search for string and show message it is found in.
  4077. \\[rmail-delete-forward]    Delete this message, move to next nondeleted.
  4078. \\[rmail-delete-backward]    Delete this message, move to previous nondeleted.
  4079. \\[rmail-undelete-previous-message]    Undelete message.  Tries current message, then earlier messages
  4080.     till a deleted message is found.
  4081. \\[rmail-edit-current-message]    Edit the current message.  \\[rmail-cease-edit] to return to Rmail.
  4082. \\[rmail-expunge]    Expunge deleted messages.
  4083. \\[rmail-expunge-and-save]    Expunge and save the file.
  4084. \\[rmail-quit]       Quit Rmail: expunge, save, then switch to another buffer.
  4085. \\[save-buffer] Save without expunging.
  4086. \\[rmail-get-new-mail]    Move new mail from system spool directory into this file.
  4087. \\[rmail-mail]    Mail a message (same as \\[mail-other-window]).
  4088. \\[rmail-continue]    Continue composing outgoing message started before.
  4089. \\[rmail-reply]    Reply to this message.  Like \\[rmail-mail] but initializes some fields.
  4090. \\[rmail-retry-failure]    Send this message again.  Used on a mailer failure message.
  4091. \\[rmail-forward]    Forward this message to another user.
  4092. \\[rmail-output-to-rmail-file]       Output this message to an Rmail file (append it).
  4093. \\[rmail-output]    Output this message to a Unix-format mail file (append it).
  4094. \\[rmail-input]    Input Rmail file.  Run Rmail on that file.
  4095. \\[rmail-add-label]    Add label to message.  It will be displayed in the mode line.
  4096. \\[rmail-kill-label]    Kill label.  Remove a label from current message.
  4097. \\[rmail-next-labeled-message]   Move to Next message with specified label
  4098.           (label defaults to last one specified).
  4099.           Standard labels: filed, unseen, answered, forwarded, deleted.
  4100.           Any other label is present only if you add it with \\[rmail-add-label].
  4101. \\[rmail-previous-labeled-message]   Move to Previous message with specified label
  4102. \\[rmail-summary]    Show headers buffer, with a one line summary of each message.
  4103. \\[rmail-summary-by-labels]    Summarize only messages with particular label(s).
  4104. \\[rmail-summary-by-recipients]   Summarize only messages with particular recipient(s).
  4105. \\[rmail-summary-by-regexp]   Summarize only messages with particular regexp(s).
  4106. \\[rmail-summary-by-topic]   Summarize only messages with subject line regexp(s).
  4107. \\[rmail-toggle-header]    Toggle display of complete header." t nil)
  4108.  
  4109. (autoload (quote rmail-input) "rmail" "\
  4110. Run Rmail on file FILENAME." t nil)
  4111.  
  4112. ;;;***
  4113.  
  4114. ;;;### (autoloads (rot13-other-window) "rot13" "rot13.el" (11295 37709))
  4115. ;;; Generated autoloads from rot13.el
  4116.  
  4117. (autoload (quote rot13-other-window) "rot13" "\
  4118. Display current buffer in rot 13 in another window." t nil)
  4119.  
  4120. ;;;***
  4121.  
  4122. ;;;### (autoloads (sc-cite-original) "sc" "sc.el" (11285 51468))
  4123. ;;; Generated autoloads from sc.el
  4124.  
  4125. (autoload (quote sc-cite-original) "sc" "\
  4126. Hook version of sc-cite.
  4127. This is callable from the various mail and news readers' reply
  4128. function according to the agreed upon standard. See \\[sc-describe]
  4129. for more details.  Sc-cite-original does not do any yanking of the
  4130. original message but it does require a few things:
  4131.  
  4132.      1) The reply buffer is the current buffer.
  4133.  
  4134.      2) The original message has been yanked and inserted into the
  4135.         reply buffer.
  4136.  
  4137.      3) Verbose mail headers from the original message have been
  4138.         inserted into the reply buffer directly before the text of the
  4139.         original message.
  4140.  
  4141.      4) Point is at the beginning of the verbose headers.
  4142.  
  4143.      5) Mark is at the end of the body of text to be cited." nil nil)
  4144.  
  4145. ;;;***
  4146.  
  4147. ;;;### (autoloads (scheme-mode) "scheme" "scheme.el" (11285 51473))
  4148. ;;; Generated autoloads from scheme.el
  4149.  
  4150. (autoload (quote scheme-mode) "scheme" "\
  4151. Major mode for editing Scheme code.
  4152. Editing commands are similar to those of lisp-mode.
  4153.  
  4154. In addition, if an inferior Scheme process is running, some additional
  4155. commands will be defined, for evaluating expressions and controlling
  4156. the interpreter, and the state of the process will be displayed in the
  4157. modeline of all Scheme buffers.  The names of commands that interact
  4158. with the Scheme process start with \"xscheme-\".  For more information
  4159. see the documentation for xscheme-interaction-mode.
  4160.  
  4161. Commands:
  4162. Delete converts tabs to spaces as it moves back.
  4163. Blank lines separate paragraphs.  Semicolons start comments.
  4164. \\{scheme-mode-map}
  4165. Entry to this mode calls the value of scheme-mode-hook
  4166. if that value is non-nil." t nil)
  4167.  
  4168. ;;;***
  4169.  
  4170. ;;;### (autoloads (scribe-mode) "scribe" "scribe.el" (11185 15625))
  4171. ;;; Generated autoloads from scribe.el
  4172.  
  4173. (autoload (quote scribe-mode) "scribe" "\
  4174. Major mode for editing files of Scribe (a text formatter) source.
  4175. Scribe-mode is similar text-mode, with a few extra commands added.
  4176. \\{scribe-mode-map}
  4177.  
  4178. Interesting variables:
  4179.  
  4180. scribe-fancy-paragraphs
  4181.   Non-nil makes Scribe mode use a different style of paragraph separation.
  4182.  
  4183. scribe-electric-quote
  4184.   Non-nil makes insert of double quote use `` or '' depending on context.
  4185.  
  4186. scribe-electric-parenthesis
  4187.   Non-nil makes an open-parenthesis char (one of `([<{')
  4188.   automatically insert its close if typed after an @Command form." t nil)
  4189.  
  4190. ;;;***
  4191.  
  4192. ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "sendmail.el" (11281 27134))
  4193. ;;; Generated autoloads from sendmail.el
  4194.  
  4195. (defvar mail-self-blind nil "\
  4196. Non-nil means insert BCC to self in messages to be sent.
  4197. This is done when the message is initialized,
  4198. so you can remove or alter the BCC field to override the default.")
  4199.  
  4200. (defvar mail-interactive nil "\
  4201. Non-nil means when sending a message wait for and display errors.
  4202. nil means let mailer mail back a message to report errors.")
  4203.  
  4204. (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
  4205. Delete these headers from old message when it's inserted in a reply.")
  4206.  
  4207. (defvar send-mail-function (quote sendmail-send-it) "\
  4208. Function to call to send the current buffer as mail.
  4209. The headers are be delimited by a line which is `mail-header-separator'.")
  4210.  
  4211. (defvar mail-header-separator "--text follows this line--" "\
  4212. *Line used to separate headers from text in messages being composed.")
  4213.  
  4214. (defvar mail-archive-file-name nil "\
  4215. *Name of file to write all outgoing messages in, or nil for none.
  4216. Do not use an rmail file here!  Instead, use its inbox file.")
  4217.  
  4218. (defvar mail-signature nil "\
  4219. *Text inserted at end of mail buffer when a message is initialized.
  4220. If t, it means to insert the contents of the file `~/.signature'.")
  4221.  
  4222. (autoload (quote mail-mode) "sendmail" "\
  4223. Major mode for editing mail to be sent.
  4224. Like Text Mode but with these additional commands:
  4225. C-c C-s  mail-send (send the message)    C-c C-c  mail-send-and-exit
  4226. C-c C-f  move to a header field (and create it if there isn't):
  4227.      C-c C-f C-t  move to To:    C-c C-f C-s  move to Subj:
  4228.      C-c C-f C-b  move to BCC:    C-c C-f C-c  move to CC:
  4229. C-c C-t  move to message text.
  4230. C-c C-y  mail-yank-original (insert current message, in Rmail).
  4231. C-c C-q  mail-fill-yanked-message (fill what was yanked).
  4232. C-c C-v  mail-sent-via (add a sent-via field for each To or CC)." t nil)
  4233.  
  4234. (autoload (quote mail) "sendmail" "\
  4235. Edit a message to be sent.  Prefix arg means resume editing (don't erase).
  4236. When this function returns, the buffer `*mail*' is selected.
  4237. The value is t if the message was newly initialized; otherwise, nil.
  4238.  
  4239. By default, the signature file `~/.signature' is inserted at the end;
  4240. see the variable `mail-signature'.
  4241.  
  4242. \\<mail-mode-map>
  4243. While editing message, type \\[mail-send-and-exit] to send the message and exit.
  4244.  
  4245. Various special commands starting with C-c are available in sendmail mode
  4246. to move to message header fields:
  4247. \\{mail-mode-map}
  4248.  
  4249. If `mail-self-blind' is non-nil, a BCC to yourself is inserted
  4250. when the message is initialized.
  4251.  
  4252. If `mail-default-reply-to' is non-nil, it should be an address (a string);
  4253. a Reply-to: field with that address is inserted.
  4254.  
  4255. If `mail-archive-file-name' is non-nil, an FCC field with that file name
  4256. is inserted.
  4257.  
  4258. If `mail-setup-hook' is bound, its value is called with no arguments
  4259. after the message is initialized.  It can add more default fields.
  4260.  
  4261. When calling from a program, the second through fifth arguments
  4262.  TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
  4263.  the initial contents of those header fields.
  4264.  These arguments should not have final newlines.
  4265. The sixth argument REPLYBUFFER is a buffer whose contents
  4266.  should be yanked if the user types C-c C-y.
  4267. The seventh argument ACTIONS is a list of actions to take
  4268.  if/when the message is sent.  Each action looks like (FUNCTION . ARGS);
  4269.  when the message is sent, we apply FUNCTION to ARGS.
  4270.  This is how Rmail arranges to mark messages `answered'." t nil)
  4271.  
  4272. (autoload (quote mail-other-window) "sendmail" "\
  4273. Like `mail' command, but display mail buffer in another window." t nil)
  4274.  
  4275. (autoload (quote mail-other-frame) "sendmail" "\
  4276. Like `mail' command, but display mail buffer in another frame." t nil)
  4277.  
  4278. (define-key ctl-x-map "m" (quote mail))
  4279.  
  4280. (define-key ctl-x-4-map "m" (quote mail-other-window))
  4281.  
  4282. (define-key ctl-x-5-map "m" (quote mail-other-frame))
  4283.  
  4284. ;;;***
  4285.  
  4286. ;;;### (autoloads (server-start) "server" "server.el" (11294 22183))
  4287. ;;; Generated autoloads from server.el
  4288.  
  4289. (autoload (quote server-start) "server" "\
  4290. Allow this Emacs process to be a server for client processes.
  4291. This starts a server communications subprocess through which
  4292. client \"editors\" can send your editing commands to this Emacs job.
  4293. To use the server, set up the program `etc/emacsclient' in the
  4294. Emacs distribution as your standard \"editor\".
  4295.  
  4296. Prefix arg means just kill any existing server communications subprocess." t nil)
  4297.  
  4298. ;;;***
  4299.  
  4300. ;;;### (autoloads (sgml-mode) "sgml-mode" "sgml-mode.el" (11274 32251))
  4301. ;;; Generated autoloads from sgml-mode.el
  4302.  
  4303. (autoload (quote sgml-mode) "sgml-mode" "\
  4304. Major mode for editing SGML.
  4305. Makes > display the matching <.  Makes / display matching /.
  4306. Use \\[sgml-validate] to validate your document with an SGML parser." t nil)
  4307.  
  4308. ;;;***
  4309.  
  4310. ;;;### (autoloads (shell) "shell" "shell.el" (11275 52454))
  4311. ;;; Generated autoloads from shell.el
  4312.  
  4313. (defvar shell-prompt-pattern "^[^#$%>]*[#$%>] *" "\
  4314. Regexp to match prompts in the inferior shell.
  4315. Defaults to \"^[^#$%>]*[#$%>] *\", which works pretty well.
  4316. This variable is used to initialise `comint-prompt-regexp' in the 
  4317. shell buffer.
  4318.  
  4319. This is a fine thing to set in your `.emacs' file.")
  4320.  
  4321. (autoload (quote shell) "shell" "\
  4322. Run an inferior shell, with I/O through buffer *shell*.
  4323. If buffer exists but shell process is not running, make new shell.
  4324. If buffer exists and shell process is running, 
  4325.  just switch to buffer `*shell*'.
  4326. Program used comes from variable `explicit-shell-file-name',
  4327.  or (if that is nil) from the ESHELL environment variable,
  4328.  or else from SHELL if there is no ESHELL.
  4329. If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
  4330.  (Note that this may lose due to a timing error if the shell
  4331.   discards input when it starts up.)
  4332. The buffer is put in Shell mode, giving commands for sending input
  4333. and controlling the subjobs of the shell.  See `shell-mode'.
  4334. See also the variable `shell-prompt-pattern'.
  4335.  
  4336. The shell file name (sans directories) is used to make a symbol name
  4337. such as `explicit-csh-args'.  If that symbol is a variable,
  4338. its value is used as a list of arguments when invoking the shell.
  4339. Otherwise, one argument `-i' is passed to the shell.
  4340.  
  4341. (Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
  4342.  
  4343. ;;;***
  4344.  
  4345. ;;;### (autoloads (sunrise-sunset) "solar" "solar.el" (11292 39058))
  4346. ;;; Generated autoloads from solar.el
  4347.  
  4348. (autoload (quote sunrise-sunset) "solar" "\
  4349. Local time of sunrise and sunset for today.  Accurate to +/- 2 minutes.
  4350. If called with an optional prefix argument, prompts for date.
  4351.  
  4352. If called with an optional double prefix argument, prompts for longitude,
  4353. latitude, time zone, and date.
  4354.  
  4355. This function is suitable for execution in a .emacs file." t nil)
  4356.  
  4357. ;;;***
  4358.  
  4359. ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-float-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines) "sort" "sort.el" (11285 51497))
  4360. ;;; Generated autoloads from sort.el
  4361.  
  4362. (autoload (quote sort-lines) "sort" "\
  4363. Sort lines in region alphabetically; argument means descending order.
  4364. Called from a program, there are three arguments:
  4365. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4366.  
  4367. (autoload (quote sort-paragraphs) "sort" "\
  4368. Sort paragraphs in region alphabetically; argument means descending order.
  4369. Called from a program, there are three arguments:
  4370. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4371.  
  4372. (autoload (quote sort-pages) "sort" "\
  4373. Sort pages in region alphabetically; argument means descending order.
  4374. Called from a program, there are three arguments:
  4375. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4376.  
  4377. (autoload (quote sort-numeric-fields) "sort" "\
  4378. Sort lines in region numerically by the ARGth field of each line.
  4379. Fields are separated by whitespace and numbered from 1 up.
  4380. Specified field must contain a number in each line of the region.
  4381. With a negative arg, sorts by the ARGth field counted from the right.
  4382. Called from a program, there are three arguments:
  4383. FIELD, BEG and END.  BEG and END specify region to sort.
  4384. If you want to sort floating-point numbers, try `sort-float-fields'." t nil)
  4385.  
  4386. (autoload (quote sort-float-fields) "sort" "\
  4387. Sort lines in region numerically by the ARGth field of each line.
  4388. Fields are separated by whitespace and numbered from 1 up.  Specified field
  4389. must contain a floating point number in each line of the region.  With a
  4390. negative arg, sorts by the ARGth field counted from the right.  Called from a
  4391. program, there are three arguments: FIELD, BEG and END.  BEG and END specify
  4392. region to sort." t nil)
  4393.  
  4394. (autoload (quote sort-fields) "sort" "\
  4395. Sort lines in region lexicographically by the ARGth field of each line.
  4396. Fields are separated by whitespace and numbered from 1 up.
  4397. With a negative arg, sorts by the ARGth field counted from the right.
  4398. Called from a program, there are three arguments:
  4399. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  4400.  
  4401. (autoload (quote sort-regexp-fields) "sort" "\
  4402. Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
  4403. RECORD-REGEXP specifies the textual units which should be sorted.
  4404.   For example, to sort lines RECORD-REGEXP would be \"^.*$\"
  4405. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  4406.   is to be used for sorting.
  4407.   If it is \"\\digit\" then the digit'th \"\\(...\\)\" match field from
  4408.   RECORD-REGEXP is used.
  4409.   If it is \"\\&\" then the whole record is used.
  4410.   Otherwise, it is a regular-expression for which to search within the record.
  4411. If a match for KEY is not found within a record then that record is ignored.
  4412.  
  4413. With a negative prefix arg sorts in reverse order.
  4414.  
  4415. For example: to sort lines in the region by the first word on each line
  4416.  starting with the letter \"f\",
  4417.  RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\=\\<f\\w*\\>\"" t nil)
  4418.  
  4419. (autoload (quote sort-columns) "sort" "\
  4420. Sort lines in region alphabetically by a certain range of columns.
  4421. For the purpose of this command, the region includes
  4422. the entire line that point is in and the entire line the mark is in.
  4423. The column positions of point and mark bound the range of columns to sort on.
  4424. A prefix argument means sort into reverse order.
  4425.  
  4426. Note that `sort-columns' rejects text that contains tabs,
  4427. because tabs could be split across the specified columns
  4428. and it doesn't know how to handle that.  Also, when possible,
  4429. it uses the `sort' utility program, which doesn't understand tabs.
  4430. Use \\[untabify] to convert tabs to spaces before sorting." t nil)
  4431.  
  4432. (autoload (quote reverse-region) "sort" "\
  4433. Reverse the order of lines in a region.
  4434. From a program takes two point or marker arguments, BEG and END." t nil)
  4435.  
  4436. ;;;***
  4437.  
  4438. ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "spell.el" (11285 51501))
  4439. ;;; Generated autoloads from spell.el
  4440.  
  4441. (autoload (quote spell-buffer) "spell" "\
  4442. Check spelling of every word in the buffer.
  4443. For each incorrect word, you are asked for the correct spelling
  4444. and then put into a query-replace to fix some or all occurrences.
  4445. If you do not want to change a word, just give the same word
  4446. as its \"correct\" spelling; then the query replace is skipped." t nil)
  4447.  
  4448. (autoload (quote spell-word) "spell" "\
  4449. Check spelling of word at or before point.
  4450. If it is not correct, ask user for the correct spelling
  4451. and `query-replace' the entire buffer to substitute it." t nil)
  4452.  
  4453. (autoload (quote spell-region) "spell" "\
  4454. Like `spell-buffer' but applies only to region.
  4455. Used in a program, applies from START to END.
  4456. DESCRIPTION is an optional string naming the unit being checked:
  4457. for example, \"word\"." t nil)
  4458.  
  4459. (autoload (quote spell-string) "spell" "\
  4460. Check spelling of string supplied as argument." t nil)
  4461.  
  4462. ;;;***
  4463.  
  4464. ;;;### (autoloads (spook) "spook" "spook.el" (11274 56066))
  4465. ;;; Generated autoloads from spook.el
  4466.  
  4467. (autoload (quote spook) "spook" "\
  4468. Adds that special touch of class to your outgoing mail." t nil)
  4469.  
  4470. ;;;***
  4471.  
  4472. ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (11202 22548))
  4473. ;;; Generated autoloads from tabify.el
  4474.  
  4475. (autoload (quote untabify) "tabify" "\
  4476. Convert all tabs in region to multiple spaces, preserving columns.
  4477. Called non-interactively, the region is specified by arguments
  4478. START and END, rather than by the position of point and mark.
  4479. The variable `tab-width' controls the spacing of tab stops." t nil)
  4480.  
  4481. (autoload (quote tabify) "tabify" "\
  4482. Convert multiple spaces in region to tabs when possible.
  4483. A group of spaces is partially replaced by tabs
  4484. when this can be done without changing the column they end at.
  4485. Called non-interactively, the region is specified by arguments
  4486. START and END, rather than by the position of point and mark.
  4487. The variable `tab-width' controls the spacing of tab stops." t nil)
  4488.  
  4489. ;;;***
  4490.  
  4491. ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (11275 52507))
  4492. ;;; Generated autoloads from tar-mode.el
  4493.  
  4494. (autoload (quote tar-mode) "tar-mode" "\
  4495. Major mode for viewing a tar file as a dired-like listing of its contents.
  4496. You can move around using the usual cursor motion commands. 
  4497. Letters no longer insert themselves.
  4498. Type 'e' to pull a file out of the tar file and into its own buffer.
  4499. Type 'c' to copy an entry from the tar file into another file on disk.
  4500.  
  4501. If you edit a sub-file of this archive (as with the 'e' command) and 
  4502. save it with Control-X Control-S, the contents of that buffer will be 
  4503. saved back into the tar-file buffer; in this way you can edit a file 
  4504. inside of a tar archive without extracting it and re-archiving it.
  4505.  
  4506. See also: variables tar-update-datestamp and tar-anal-blocksize.
  4507. \\{tar-mode-map}" nil nil)
  4508.  
  4509. ;;;***
  4510.  
  4511. ;;;### (autoloads (rsh telnet) "telnet" "telnet.el" (11283 60253))
  4512. ;;; Generated autoloads from telnet.el
  4513.  
  4514. (autoload (quote telnet) "telnet" "\
  4515. Open a network login connection to host named HOST (a string).
  4516. Communication with HOST is recorded in a buffer *HOST-telnet*.
  4517. Normally input is edited in Emacs and sent a line at a time." t nil)
  4518.  
  4519. (autoload (quote rsh) "telnet" "\
  4520. Open a network login connection to host named HOST (a string).
  4521. Communication with HOST is recorded in a buffer *HOST-rsh*.
  4522. Normally input is edited in Emacs and sent a line at a time." t nil)
  4523.  
  4524. ;;;***
  4525.  
  4526. ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (11285 51534))
  4527. ;;; Generated autoloads from terminal.el
  4528.  
  4529. (autoload (quote terminal-emulator) "terminal" "\
  4530. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  4531. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  4532. BUFFER's contents are made an image of the display generated by that program,
  4533. and any input typed when BUFFER is the current Emacs buffer is sent to that
  4534. program an keyboard input.
  4535.  
  4536. Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
  4537. are parsed from an input-string using your usual shell.
  4538. WIDTH and HEIGHT are determined from the size of the current window
  4539. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  4540.  
  4541. To switch buffers and leave the emulator, or to give commands
  4542. to the emulator itself (as opposed to the program running under it),
  4543. type Control-^.  The following character is an emulator command.
  4544. Type Control-^ twice to send it to the subprogram.
  4545. This escape character may be changed using the variable `terminal-escape-char'.
  4546.  
  4547. `Meta' characters may not currently be sent through the terminal emulator.
  4548.  
  4549. Here is a list of some of the variables which control the behaviour
  4550. of the emulator -- see their documentation for more information:
  4551. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  4552. terminal-redisplay-interval.
  4553.  
  4554. This function calls the value of terminal-mode-hook if that exists
  4555. and is non-nil after the terminal buffer has been set up and the
  4556. subprocess started.
  4557.  
  4558. Presently with `termcap' only; if somebody sends us code to make this
  4559. work with `terminfo' we will try to use it." t nil)
  4560.  
  4561. ;;;***
  4562.  
  4563. ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "tex-mode.el" (11285 51540))
  4564. ;;; Generated autoloads from tex-mode.el
  4565.  
  4566. (defvar tex-shell-file-name nil "\
  4567. *If non-nil, is file name to use for the subshell in which TeX is run.")
  4568.  
  4569. (defvar tex-directory "." "\
  4570. *Directory in which temporary files are left.
  4571. You can make this /tmp if your TEXINPUTS has no relative directories in it
  4572. and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
  4573. \\input commands with relative directories.")
  4574.  
  4575. (defvar tex-offer-save t "\
  4576. *If non-nil, ask about saving modified buffers before \\[tex-file] is run.")
  4577.  
  4578. (defvar tex-run-command "tex" "\
  4579. *Command used to run TeX subjob.
  4580. If this string contains an asterisk (*), it will be replaced by the
  4581. filename; if not, the name of the file, preceded by blank, will be added to
  4582. this string.")
  4583.  
  4584. (defvar latex-run-command "latex" "\
  4585. *Command used to run LaTeX subjob.
  4586. If this string contains an asterisk (*), it will be replaced by the
  4587. filename; if not, the name of the file, preceded by blank, will be added to
  4588. this string.")
  4589.  
  4590. (defvar latex-block-names nil "\
  4591. *User defined LaTeX block names.
  4592. Combined with `standard-latex-block-names' for minibuffer completion.")
  4593.  
  4594. (defvar slitex-run-command "slitex" "\
  4595. *Command used to run SliTeX subjob.
  4596. If this string contains an asterisk (*), it will be replaced by the
  4597. filename; if not, the name of the file, preceded by blank, will be added to
  4598. this string.")
  4599.  
  4600. (defvar tex-bibtex-command "bibtex" "\
  4601. *Command used by `tex-bibtex-file' to gather bibliographic data.
  4602. If this string contains an asterisk (*), it will be replaced by the
  4603. filename; if not, the name of the file, preceded by blank, will be added to
  4604. this string.")
  4605.  
  4606. (defvar tex-dvi-print-command "lpr -d" "\
  4607. *Command used by \\[tex-print] to print a .dvi file.
  4608. If this string contains an asterisk (*), it will be replaced by the
  4609. filename; if not, the name of the file, preceded by blank, will be added to
  4610. this string.")
  4611.  
  4612. (defvar tex-alt-dvi-print-command "lpr -d" "\
  4613. *Command used by \\[tex-print] with a prefix arg to print a .dvi file.
  4614. If this string contains an asterisk (*), it will be replaced by the
  4615. filename; if not, the name of the file, preceded by blank, will be added to
  4616. this string.
  4617.  
  4618. If two printers are not enough of a choice, you can define the value
  4619. of tex-alt-dvi-print-command to be an expression that asks what you want;
  4620. for example,
  4621.  
  4622.     (setq tex-alt-dvi-print-command
  4623.          '(format \"lpr -P%s\" (read-string \"Use printer: \")))
  4624.  
  4625. would tell \\[tex-print] with a prefix argument to ask you which printer to
  4626. use.")
  4627.  
  4628. (defvar tex-dvi-view-command nil "\
  4629. *Command used by \\[tex-view] to display a .dvi file.
  4630. If this string contains an asterisk (*), it will be replaced by the
  4631. filename; if not, the name of the file, preceded by blank, will be added to
  4632. this string.
  4633.  
  4634. This can be set conditionally so that the previewer used is suitable for the
  4635. window system being used.  For example,
  4636.  
  4637.     (setq tex-dvi-view-command
  4638.           (if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\"))
  4639.  
  4640. would tell \\[tex-view] use xdvi under X windows and to use dvi2tty
  4641. otherwise.")
  4642.  
  4643. (defvar tex-show-queue-command "lpq" "\
  4644. *Command used by \\[tex-show-print-queue] to show the print queue.
  4645. Should show the queue(s) that \\[tex-print] puts jobs on.")
  4646.  
  4647. (defvar tex-default-mode (quote plain-tex-mode) "\
  4648. *Mode to enter for a new file that might be either TeX or LaTeX.
  4649. This variable is used when it can't be determined whether the file
  4650. is plain TeX or LaTeX or what because the file contains no commands.
  4651. Normally set to either 'plain-tex-mode or 'latex-mode.")
  4652.  
  4653. (defvar tex-open-quote "``" "\
  4654. *String inserted by typing \\[tex-insert-quote] to open a quotation.")
  4655.  
  4656. (defvar tex-close-quote "''" "\
  4657. *String inserted by typing \\[tex-insert-quote] to close a quotation.")
  4658.  
  4659. (autoload (quote tex-mode) "tex-mode" "\
  4660. Major mode for editing files of input for TeX, LaTeX, or SliTeX.
  4661. Tries to determine (by looking at the beginning of the file) whether
  4662. this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
  4663. latex-mode, or slitex-mode, respectively.  If it cannot be determined,
  4664. such as if there are no commands in the file, the value of tex-default-mode
  4665. is used." t nil)
  4666.  
  4667. (defalias (quote TeX-mode) (quote tex-mode))
  4668.  
  4669. (defalias (quote LaTeX-mode) (quote latex-mode))
  4670.  
  4671. (autoload (quote plain-tex-mode) "tex-mode" "\
  4672. Major mode for editing files of input for plain TeX.
  4673. Makes $ and } display the characters they match.
  4674. Makes \" insert `` when it seems to be the beginning of a quotation,
  4675. and '' when it appears to be the end; it inserts \" only after a \\.
  4676.  
  4677. Use \\[tex-region] to run TeX on the current region, plus a \"header\"
  4678. copied from the top of the file (containing macro definitions, etc.),
  4679. running TeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  4680. \\[tex-file] saves the buffer and then processes the file.
  4681. \\[tex-print] prints the .dvi file made by any of these.
  4682. \\[tex-view] previews the .dvi file made by any of these.
  4683. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  4684.  
  4685. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  4686. mismatched $'s or braces.
  4687.  
  4688. Special commands:
  4689. \\{tex-mode-map}
  4690.  
  4691. Mode variables:
  4692. tex-run-command
  4693.     Command string used by \\[tex-region] or \\[tex-buffer].
  4694. tex-directory
  4695.     Directory in which to create temporary files for TeX jobs
  4696.     run by \\[tex-region] or \\[tex-buffer].
  4697. tex-dvi-print-command
  4698.     Command string used by \\[tex-print] to print a .dvi file.
  4699. tex-alt-dvi-print-command
  4700.     Alternative command string used by \\[tex-print] (when given a prefix
  4701.     argument) to print a .dvi file.
  4702. tex-dvi-view-command
  4703.     Command string used by \\[tex-view] to preview a .dvi file.
  4704. tex-show-queue-command
  4705.     Command string used by \\[tex-show-print-queue] to show the print
  4706.     queue that \\[tex-print] put your job on.
  4707.  
  4708. Entering Plain-tex mode calls the value of `text-mode-hook', then the value
  4709. of `tex-mode-hook', and then the value of `plain-tex-mode-hook'.  When the
  4710. special subshell is initiated, the value of `tex-shell-hook' is called." t nil)
  4711.  
  4712. (defalias (quote plain-TeX-mode) (quote plain-tex-mode))
  4713.  
  4714. (autoload (quote latex-mode) "tex-mode" "\
  4715. Major mode for editing files of input for LaTeX.
  4716. Makes $ and } display the characters they match.
  4717. Makes \" insert `` when it seems to be the beginning of a quotation,
  4718. and '' when it appears to be the end; it inserts \" only after a \\.
  4719.  
  4720. Use \\[tex-region] to run LaTeX on the current region, plus the preamble
  4721. copied from the top of the file (containing \\documentstyle, etc.),
  4722. running LaTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  4723. \\[tex-file] saves the buffer and then processes the file.
  4724. \\[tex-print] prints the .dvi file made by any of these.
  4725. \\[tex-view] previews the .dvi file made by any of these.
  4726. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  4727.  
  4728. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  4729. mismatched $'s or braces.
  4730.  
  4731. Special commands:
  4732. \\{tex-mode-map}
  4733.  
  4734. Mode variables:
  4735. latex-run-command
  4736.     Command string used by \\[tex-region] or \\[tex-buffer].
  4737. tex-directory
  4738.     Directory in which to create temporary files for LaTeX jobs
  4739.     run by \\[tex-region] or \\[tex-buffer].
  4740. tex-dvi-print-command
  4741.     Command string used by \\[tex-print] to print a .dvi file.
  4742. tex-alt-dvi-print-command
  4743.     Alternative command string used by \\[tex-print] (when given a prefix
  4744.     argument) to print a .dvi file.
  4745. tex-dvi-view-command
  4746.     Command string used by \\[tex-view] to preview a .dvi file.
  4747. tex-show-queue-command
  4748.     Command string used by \\[tex-show-print-queue] to show the print
  4749.     queue that \\[tex-print] put your job on.
  4750.  
  4751. Entering Latex mode calls the value of text-mode-hook, then the value of
  4752. tex-mode-hook, and then the value of latex-mode-hook.  When the special
  4753. subshell is initiated, the value of tex-shell-hook is called." t nil)
  4754.  
  4755. ;;;***
  4756.  
  4757. ;;;### (autoloads (texinfo-mode) "texinfo" "texinfo.el" (11283 53395))
  4758. ;;; Generated autoloads from texinfo.el
  4759.  
  4760. (autoload (quote texinfo-mode) "texinfo" "\
  4761. Major mode for editing Texinfo files.
  4762.  
  4763.   It has these extra commands:
  4764. \\{texinfo-mode-map}
  4765.  
  4766.   These are files that are used as input for TeX to make printed manuals
  4767. and also to be turned into Info files by \\[texinfo-format-buffer] or
  4768. `makeinfo'.  These files must be written in a very restricted and
  4769. modified version of TeX input format.
  4770.  
  4771.   Editing commands are like text-mode except that the syntax table is
  4772. set up so expression commands skip Texinfo bracket groups.  To see
  4773. what the Info version of a region of the Texinfo file will look like,
  4774. use \\[texinfo-format-region].  This command runs Info on the current region
  4775. of the Texinfo file and formats it properly.
  4776.  
  4777.   You can show the structure of a Texinfo file with \\[texinfo-show-structure].
  4778. This command shows the structure of a Texinfo file by listing the
  4779. lines with the @-sign commands for @chapter, @section, and the like.
  4780. These lines are displayed in another window called the *Occur* window.
  4781. In that window, you can position the cursor over one of the lines and
  4782. use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
  4783. in the Texinfo file.
  4784.  
  4785.   In addition, Texinfo mode provides commands that insert various
  4786. frequently used @-sign commands into the buffer.  You can use these
  4787. commands to save keystrokes.  And you can insert balanced braces with
  4788. \\[texinfo-insert-braces] and later use the command \\[up-list] to
  4789. move forward past the closing brace.
  4790.  
  4791. Also, Texinfo mode provides functions for automatically creating or
  4792. updating menus and node pointers.  These functions
  4793.  
  4794.   * insert the `Next', `Previous' and `Up' pointers of a node,
  4795.   * insert or update the menu for a section, and
  4796.   * create a master menu for a Texinfo source file.
  4797.  
  4798. Here are the functions:
  4799.  
  4800.     texinfo-update-node                \\[texinfo-update-node]
  4801.     texinfo-every-node-update          \\[texinfo-every-node-update]
  4802.     texinfo-sequential-node-update 
  4803.  
  4804.     texinfo-make-menu                  \\[texinfo-make-menu]
  4805.     texinfo-all-menus-update           \\[texinfo-all-menus-update]
  4806.     texinfo-master-menu
  4807.  
  4808.     texinfo-indent-menu-description (column &optional region-p)
  4809.  
  4810. The `texinfo-column-for-description' variable specifies the column to
  4811. which menu descriptions are indented. 
  4812.  
  4813. Passed an argument (a prefix argument, if interactive), the
  4814. `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
  4815. in the region.
  4816.  
  4817. To use the updating commands, you must structure your Texinfo file
  4818. hierarchically, such that each `@node' line, with the exception of the
  4819. Top node, is accompanied by some kind of section line, such as an
  4820. `@chapter' or `@section' line.
  4821.  
  4822. If the file has a `top' node, it must be called `top' or `Top' and
  4823. be the first node in the file.
  4824.  
  4825. Entering Texinfo mode calls the value of text-mode-hook, and then the
  4826. value of texinfo-mode-hook." t nil)
  4827.  
  4828. ;;;***
  4829.  
  4830. ;;;### (autoloads (display-time) "time" "time.el" (11279 41068))
  4831. ;;; Generated autoloads from time.el
  4832.  
  4833. (defvar display-time-day-and-date nil "\
  4834. *Non-nil means \\[display-time] should display day and date as well as time.")
  4835.  
  4836. (autoload (quote display-time) "time" "\
  4837. Display current time, load level, and mail flag in mode line of each buffer.
  4838. Updates automatically every minute.
  4839. If `display-time-day-and-date' is non-nil, the current day and date
  4840. are displayed as well.
  4841. After each update, `display-time-hook' is run with `run-hooks'." t nil)
  4842.  
  4843. ;;;***
  4844.  
  4845. ;;;### (autoloads (run-at-time) "timer" "timer.el" (11285 51562))
  4846. ;;; Generated autoloads from timer.el
  4847.  
  4848. (autoload (quote run-at-time) "timer" "\
  4849. Run a function at a time, and optionally on a regular interval.
  4850. Arguments are TIME, REPEAT, FUNCTION &rest ARGS.
  4851. TIME, a string, can be specified absolutely or relative to now.
  4852. TIME can also be an integer, a number of seconds.
  4853. REPEAT, an integer number of seconds, is the interval on which to repeat
  4854. the call to the function.  If REPEAT is nil, call it just once.
  4855.  
  4856. Absolute times may be specified in a wide variety of formats;
  4857. Something of the form `HOUR:MIN:SEC TIMEZONE MONTH/DAY/YEAR', where
  4858. all fields are numbers, works; the format used by the Unix `date'
  4859. command works too.
  4860.  
  4861. Relative times may be specified as a series of numbers followed by units:
  4862.   1 min             denotes one minute from now.
  4863.   min            does too.
  4864.   1 min 5 sec        denotes 65 seconds from now.
  4865.   1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year
  4866.             denotes the sum of all the given durations from now." t nil)
  4867.  
  4868. ;;;***
  4869.  
  4870. ;;;### (autoloads (tq-create) "tq" "tq.el" (10941 58296))
  4871. ;;; Generated autoloads from tq.el
  4872.  
  4873. (autoload (quote tq-create) "tq" "\
  4874. Create and return a transaction queue communicating with PROCESS.
  4875. PROCESS should be a subprocess capable of sending and receiving
  4876. streams of bytes.  It may be a local process, or it may be connected
  4877. to a tcp server on another machine." nil nil)
  4878.  
  4879. ;;;***
  4880.  
  4881. ;;;### (autoloads (trace-function-background trace-function) "trace" "trace.el" (11256 21938))
  4882. ;;; Generated autoloads from trace.el
  4883.  
  4884. (defvar trace-buffer "*trace-output*" "\
  4885. *Trace output will by default go to that buffer.")
  4886.  
  4887. (autoload (quote trace-function) "trace" "\
  4888. Traces FUNCTION with trace output going to BUFFER.
  4889. For every call of FUNCTION Lisp-style trace messages that display argument
  4890. and return values will be inserted into BUFFER. This function generates the
  4891. trace advice for FUNCTION and activates it together with any other advice
  4892. there might be!! The trace BUFFER will popup whenever FUNCTION is called.
  4893. Do not use this to trace functions that switch buffers or do any other
  4894. display oriented stuff, use `trace-function-background' instead." t nil)
  4895.  
  4896. (autoload (quote trace-function-background) "trace" "\
  4897. Traces FUNCTION with trace output going quietly to BUFFER.
  4898. For every call of FUNCTION Lisp-style trace messages that display argument
  4899. and return values will be inserted into BUFFER. This function generates the
  4900. trace advice for FUNCTION and activates it together with any other advice
  4901. there might be!! Trace output will quietly go to BUFFER without changing
  4902. the window or buffer configuration at all." t nil)
  4903.  
  4904. ;;;***
  4905.  
  4906. ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "two-column.el" (11223 37223))
  4907. ;;; Generated autoloads from two-column.el
  4908.  
  4909. (defvar tc-mode-map nil "\
  4910. Keymap for commands for two-column mode.")
  4911.  
  4912. (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" (quote tc-merge)) (define-key tc-mode-map "2" (quote tc-two-columns)) (define-key tc-mode-map "b" (quote tc-associate-buffer)) (define-key tc-mode-map "e" (quote tc-dissociate)) (define-key tc-mode-map " " (quote tc-recenter)) (define-key tc-mode-map "o" (quote tc-associated-buffer)) (define-key tc-mode-map "s" (quote tc-split)) (define-key tc-mode-map "{" (quote shrink-window-horizontally)) (define-key tc-mode-map "}" (quote enlarge-window-horizontally)) (define-key tc-mode-map " " (quote tc-scroll-up)) (define-key tc-mode-map "" (quote tc-scroll-down)) (define-key tc-mode-map "" (quote tc-scroll-line)))
  4913.  
  4914. (global-set-key "6" tc-mode-map)
  4915.  
  4916. (autoload (quote tc-two-columns) "two-column" "\
  4917. Split current window vertically for two-column editing.
  4918.  
  4919. When called the first time, associates a buffer with the current
  4920. buffer.  Both buffers are put in two-column minor mode and
  4921. tc-mode-hook gets called on both.  These buffers remember
  4922. about one another, even when renamed.
  4923.  
  4924. When called again, restores the screen layout with the current buffer
  4925. first and the associated buffer to it's right.
  4926.  
  4927. If you include long lines, i.e which will span both columns (eg.
  4928. source code), they should be in what will be the first column, with
  4929. the associated buffer having empty lines next to them.
  4930.  
  4931. You have the following commands at your disposal:
  4932.  
  4933. \\[tc-two-columns]   Rearrange screen
  4934. \\[tc-associate-buffer]   Reassociate buffer after changing major mode
  4935. \\[tc-scroll-up]   Scroll both buffers up by a screenfull
  4936. \\[tc-scroll-down]   Scroll both buffers down by a screenful
  4937. \\[tc-scroll-line]   Scroll both buffers up by one or more lines
  4938. \\[tc-recenter]   Recenter and realign other buffer
  4939. \\[shrink-window-horizontally], \\[enlarge-window-horizontally]   Shrink, enlarge current column
  4940. \\[tc-associated-buffer]   Switch to associated buffer
  4941. \\[tc-merge]   Merge both buffers
  4942.  
  4943. These keybindings can be customized in your ~/.emacs by `tc-prefix'
  4944. and `tc-mode-map'.
  4945.  
  4946. The appearance of the screen can be customized by the variables
  4947. `tc-window-width', `tc-beyond-fill-column',
  4948. `tc-mode-line-format' and `truncate-partial-width-windows'." t nil)
  4949.  
  4950. (autoload (quote tc-associate-buffer) "two-column" "\
  4951. Associate another buffer with this one in two-column minor mode.
  4952. Can also be used to associate a just previously visited file, by
  4953. accepting the proposed default buffer.
  4954.  
  4955. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  4956.  
  4957. (autoload (quote tc-split) "two-column" "\
  4958. Unmerge a two-column text into two buffers in two-column minor mode.
  4959. The text is unmerged at the cursor's column which becomes the local
  4960. value of `tc-window-width'.  Only lines that have the ARG same
  4961. preceding characters at that column get split.  The ARG preceding
  4962. characters without any leading whitespace become the local value for
  4963. `tc-separator'.  This way lines that continue across both
  4964. columns remain untouched in the first buffer.
  4965.  
  4966. This function can be used with a prototype line, to set up things as
  4967. you like them.  You write the first line of each column with the
  4968. separator you like and then unmerge that line.  E.g.:
  4969.  
  4970. First column's text    sSs  Second columns text
  4971.                \\___/\\
  4972.             /    \\
  4973.    5 character Separator      You type  M-5 \\[tc-split]  with the point here
  4974.  
  4975. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  4976.  
  4977. (autoload (quote tc-dissociate) "two-column" "\
  4978. Turn off two-column minor mode in current and associated buffer.
  4979. If the associated buffer is unmodified and empty, it is killed." t nil)
  4980.  
  4981. (autoload (quote tc-merge) "two-column" "\
  4982. Merges the associated buffer with the current buffer.
  4983. They get merged at the column, which is the value of
  4984. `tc-window-width', i.e. usually at the vertical window
  4985. separator.  This separator gets replaced with white space.  Beyond
  4986. that the value of gets inserted on merged lines.  The two columns are
  4987. thus pasted side by side, in a single text.  If the other buffer is
  4988. not displayed to the left of this one, then this one becomes the left
  4989. column.
  4990.  
  4991. If you want `tc-separator' on empty lines in the second column,
  4992. you should put just one space in them.  In the final result, you can strip
  4993. off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil)
  4994.  
  4995. (autoload (quote tc-associated-buffer) "two-column" "\
  4996. Switch to associated buffer." t nil)
  4997.  
  4998. (autoload (quote tc-scroll-line) "two-column" "\
  4999. Scroll current window upward by ARG lines.
  5000. The associated window gets scrolled to the same line." t nil)
  5001.  
  5002. (autoload (quote tc-scroll-up) "two-column" "\
  5003. Scroll current window upward by ARG screens.
  5004. The associated window gets scrolled to the same line." t nil)
  5005.  
  5006. (autoload (quote tc-scroll-down) "two-column" "\
  5007. Scroll current window downward by ARG screens.
  5008. The associated window gets scrolled to the same line." t nil)
  5009.  
  5010. (autoload (quote tc-recenter) "two-column" "\
  5011. Center point in window.  With ARG, put point on line ARG.
  5012. This counts from bottom if ARG is negative.  The associated window
  5013. gets scrolled to the same line." t nil)
  5014.  
  5015. ;;;***
  5016.  
  5017. ;;;### (autoloads (ununderline-region underline-region) "underline" "underline.el" (11185 16923))
  5018. ;;; Generated autoloads from underline.el
  5019.  
  5020. (autoload (quote underline-region) "underline" "\
  5021. Underline all nonblank characters in the region.
  5022. Works by overstriking underscores.
  5023. Called from program, takes two arguments START and END
  5024. which specify the range to operate on." t nil)
  5025.  
  5026. (autoload (quote ununderline-region) "underline" "\
  5027. Remove all underlining (overstruck underscores) in the region.
  5028. Called from program, takes two arguments START and END
  5029. which specify the range to operate on." t nil)
  5030.  
  5031. ;;;***
  5032.  
  5033. ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "unrmail.el" (11176 61386))
  5034. ;;; Generated autoloads from unrmail.el
  5035.  
  5036. (autoload (quote batch-unrmail) "unrmail" "\
  5037. Convert Rmail files to mailbox files.
  5038. Specify the input Rmail file names as command line arguments.
  5039. For each Rmail file, the corresponding output file name
  5040. is made by adding `.mail' at the end.
  5041. For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
  5042.  
  5043. (autoload (quote unrmail) "unrmail" "\
  5044. Convert Rmail file FILE to mailbox-format file TO-FILE." t nil)
  5045.  
  5046. ;;;***
  5047.  
  5048. ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "upd-copyr.el" (11086 5246))
  5049. ;;; Generated autoloads from upd-copyr.el
  5050.  
  5051. (defvar replace-copying-with nil "\
  5052. *If non-nil, replace copying notices with this file.")
  5053.  
  5054. (autoload (quote update-copyright) "upd-copyr" "\
  5055. Update the copyright notice at the beginning of the buffer
  5056. to indicate the current year.  If optional arg REPLACE is given
  5057. (interactively, with prefix arg) replace the years in the notice
  5058. rather than adding the current year after them.
  5059. If `replace-copying-with' is set, the copying permissions following the
  5060. copyright are replaced as well.
  5061.  
  5062. If optional third argument ASK is non-nil, the user is prompted for whether
  5063. or not to update the copyright.  If optional fourth argument ASK-YEAR is
  5064. non-nil, the user is prompted for whether or not to replace the year rather
  5065. than adding to it." t nil)
  5066.  
  5067. (autoload (quote ask-to-update-copyright) "upd-copyr" "\
  5068. If the current buffer contains a copyright notice that is out of date,
  5069. ask the user if it should be updated with `update-copyright' (which see).
  5070. Put this on write-file-hooks." nil nil)
  5071.  
  5072. ;;;***
  5073.  
  5074. ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "userlock.el" (10941 47202))
  5075. ;;; Generated autoloads from userlock.el
  5076.  
  5077. (autoload (quote ask-user-about-lock) "userlock" "\
  5078. Ask user what to do when he wants to edit FILE but it is locked by USER.
  5079. This function has a choice of three things to do:
  5080.   do (signal 'buffer-file-locked (list FILE USER))
  5081.     to refrain from editing the file
  5082.   return t (grab the lock on the file)
  5083.   return nil (edit the file even though it is locked).
  5084. You can rewrite it to use any criterion you like to choose which one to do." nil nil)
  5085.  
  5086. (autoload (quote ask-user-about-supersession-threat) "userlock" "\
  5087. Ask a user who is about to modify an obsolete buffer what to do.
  5088. This function has two choices: it can return, in which case the modification
  5089. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  5090. in which case the proposed buffer modification will not be made.
  5091.  
  5092. You can rewrite this to use any criterion you like to choose which one to do.
  5093. The buffer in question is current when this function is called." nil nil)
  5094.  
  5095. ;;;***
  5096.  
  5097. ;;;### (autoloads (vc-update-change-log vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-diff vc-register vc-next-action) "vc" "vc.el" (11289 15564))
  5098. ;;; Generated autoloads from vc.el
  5099.  
  5100. (defvar vc-checkin-hook nil "\
  5101. *List of functions called after a checkin is done.  See `run-hooks'.")
  5102.  
  5103. (autoload (quote vc-next-action) "vc" "\
  5104. Do the next logical checkin or checkout operation on the current file.
  5105.    If the file is not already registered, this registers it for version
  5106. control and then retrieves a writable, locked copy for editing.
  5107.    If the file is registered and not locked by anyone, this checks out
  5108. a writable and locked file ready for editing.
  5109.    If the file is checked out and locked by the calling user, this
  5110. first checks to see if the file has changed since checkout.  If not,
  5111. it performs a revert.
  5112.    If the file has been changed, this pops up a buffer for entry
  5113. of a log message; when the message has been entered, it checks in the
  5114. resulting changes along with the log message as change commentary.  If
  5115. the variable `vc-keep-workfiles' is non-nil (which is its default), a
  5116. read-only copy of the changed file is left in place afterwards.
  5117.    If the file is registered and locked by someone else, you are given
  5118. the option to steal the lock.
  5119.    If you call this from within a VC dired buffer with no files marked,
  5120. it will operate on the file in the current line.
  5121.    If you call this from within a VC dired buffer, and one or more
  5122. files are marked, it will accept a log message and then operate on
  5123. each one.  The log message will be used as a comment for any register
  5124. or checkin operations, but ignored when doing checkouts.  Attempted
  5125. lock steals will raise an error." t nil)
  5126.  
  5127. (autoload (quote vc-register) "vc" "\
  5128. Register the current file into your version-control system." t nil)
  5129.  
  5130. (autoload (quote vc-diff) "vc" "\
  5131. Display diffs between file versions.
  5132. Normally this compares the current file and buffer with the most recent 
  5133. checked in version of that file.  This uses no arguments.
  5134. With a prefix argument, it reads the file name to use
  5135. and two version designators specifying which versions to compare." t nil)
  5136.  
  5137. (autoload (quote vc-insert-headers) "vc" "\
  5138. Insert headers in a file for use with your version-control system.
  5139. Headers desired are inserted at the start of the buffer, and are pulled from
  5140. the variable `vc-header-alist'." t nil)
  5141.  
  5142. (autoload (quote vc-directory) "vc" "\
  5143. Show version-control status of all files under the current directory." t nil)
  5144.  
  5145. (autoload (quote vc-create-snapshot) "vc" "\
  5146. Make a snapshot called NAME.
  5147. The snapshot is made from all registered files at or below the current
  5148. directory.  For each file, the version level of its latest
  5149. version becomes part of the named configuration." t nil)
  5150.  
  5151. (autoload (quote vc-retrieve-snapshot) "vc" "\
  5152. Retrieve the snapshot called NAME.
  5153. This function fails if any files are locked at or below the current directory
  5154. Otherwise, all registered files are checked out (unlocked) at their version
  5155. levels in the snapshot." t nil)
  5156.  
  5157. (autoload (quote vc-print-log) "vc" "\
  5158. List the change log of the current buffer in a window." t nil)
  5159.  
  5160. (autoload (quote vc-revert-buffer) "vc" "\
  5161. Revert the current buffer's file back to the latest checked-in version.
  5162. This asks for confirmation if the buffer contents are not identical
  5163. to that version." t nil)
  5164.  
  5165. (autoload (quote vc-cancel-version) "vc" "\
  5166. Get rid of most recently checked in version of this file.
  5167. A prefix argument means do not revert the buffer afterwards." t nil)
  5168.  
  5169. (autoload (quote vc-update-change-log) "vc" "\
  5170. Find change log file and add entries from recent RCS logs.
  5171. The mark is left at the end of the text prepended to the change log.
  5172. With prefix arg of C-u, only find log entries for the current buffer's file.
  5173. With any numeric prefix arg, find log entries for all files currently visited.
  5174. From a program, any arguments are passed to the `rcs2log' script." t nil)
  5175.  
  5176. ;;;***
  5177.  
  5178. ;;;### (autoloads (vi-mode) "vi" "vi.el" (11285 51569))
  5179. ;;; Generated autoloads from vi.el
  5180.  
  5181. (autoload (quote vi-mode) "vi" "\
  5182. Major mode that acts like the `vi' editor.
  5183. The purpose of this mode is to provide you the combined power of vi (namely,
  5184. the \"cross product\" effect of commands and repeat last changes) and Emacs.
  5185.  
  5186. This command redefines nearly all keys to look like vi commands.
  5187. It records the previous major mode, and any vi command for input
  5188. (`i', `a', `s', etc.) switches back to that mode.
  5189. Thus, ordinary Emacs (in whatever major mode you had been using)
  5190. is \"input\" mode as far as vi is concerned.
  5191.  
  5192. To get back into vi from \"input\" mode, you must issue this command again.
  5193. Therefore, it is recommended that you assign it to a key.
  5194.  
  5195. Major differences between this mode and real vi :
  5196.  
  5197. * Limitations and unsupported features
  5198.   - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
  5199.     not supported.
  5200.   - Ex commands are not implemented; try ':' to get some hints.
  5201.   - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
  5202.  
  5203. * Modifications
  5204.   - The stopping positions for some point motion commands (word boundary,
  5205.     pattern search) are slightly different from standard 'vi'.
  5206.     Also, no automatic wrap around at end of buffer for pattern searching.
  5207.   - Since changes are done in two steps (deletion then insertion), you need
  5208.     to undo twice to completely undo a change command.  But this is not needed
  5209.     for undoing a repeated change command.
  5210.   - No need to set/unset 'magic', to search for a string with regular expr
  5211.     in it just put a prefix arg for the search commands.  Replace cmds too.
  5212.   - ^R is bound to incremental backward search, so use ^L to redraw screen.
  5213.  
  5214. * Extensions
  5215.   - Some standard (or modified) Emacs commands were integrated, such as
  5216.     incremental search, query replace, transpose objects, and keyboard macros.
  5217.   - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
  5218.     esc-map or set undefined.  These can give you the full power of Emacs.
  5219.   - See vi-com-map for those keys that are extensions to standard vi, e.g.
  5220.     `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
  5221.     `vi-mark-region', and 'vi-quote-words'.  Some of them are quite handy.
  5222.   - Use \\[vi-switch-mode] to switch among different modes quickly.
  5223.   
  5224. Syntax table and abbrevs while in vi mode remain as they were in Emacs." t nil)
  5225.  
  5226. ;;;***
  5227.  
  5228. ;;;### (autoloads (view-mode view-buffer-other-window view-buffer view-file-other-window view-file) "view" "view.el" (11277 39824))
  5229. ;;; Generated autoloads from view.el
  5230.  
  5231. (autoload (quote view-file) "view" "\
  5232. View FILE in View mode, returning to previous buffer when done.
  5233. The usual Emacs commands are not available; instead,
  5234. a special set of commands (mostly letters and punctuation)
  5235. are defined for moving around in the buffer.
  5236. Space scrolls forward, Delete scrolls backward.
  5237. For list of all View commands, type ? or h while viewing.
  5238.  
  5239. Calls the value of  view-hook  if that is non-nil." t nil)
  5240.  
  5241. (autoload (quote view-file-other-window) "view" "\
  5242. View FILE in View mode in other window.
  5243. Return to previous buffer when done.
  5244. The usual Emacs commands are not available; instead,
  5245. a special set of commands (mostly letters and punctuation)
  5246. are defined for moving around in the buffer.
  5247. Space scrolls forward, Delete scrolls backward.
  5248. For list of all View commands, type ? or h while viewing.
  5249.  
  5250. Calls the value of  view-hook  if that is non-nil." t nil)
  5251.  
  5252. (autoload (quote view-buffer) "view" "\
  5253. View BUFFER in View mode, returning to previous buffer when done.
  5254. The usual Emacs commands are not available; instead,
  5255. a special set of commands (mostly letters and punctuation)
  5256. are defined for moving around in the buffer.
  5257. Space scrolls forward, Delete scrolls backward.
  5258. For list of all View commands, type ? or h while viewing.
  5259.  
  5260. Calls the value of  view-hook  if that is non-nil." t nil)
  5261.  
  5262. (autoload (quote view-buffer-other-window) "view" "\
  5263. View BUFFER in View mode in another window,
  5264. returning to original buffer when done  ONLY if 
  5265. prefix argument not-return is nil (as by default).
  5266.   The usual Emacs commands are not available; instead,
  5267. a special set of commands (mostly letters and punctuation)
  5268. are defined for moving around in the buffer.
  5269. Space scrolls forward, Delete scrolls backward.
  5270. For list of all View commands, type ? or h while viewing.
  5271.  
  5272. Calls the value of  view-hook  if that is non-nil." t nil)
  5273.  
  5274. (autoload (quote view-mode) "view" "\
  5275. Major mode for viewing text but not editing it.
  5276. Letters do not insert themselves.  Instead these commands are provided.
  5277. Most commands take prefix arguments.  Commands dealing with lines
  5278. default to \"scroll size\" lines (initially size of window).
  5279. Search commands default to a repeat count of one.
  5280. M-< or <    move to beginning of buffer.
  5281. M-> or >    move to end of buffer.
  5282. C-v or Space    scroll forward lines.
  5283. M-v or DEL    scroll backward lines.
  5284. CR or LF    scroll forward one line (backward with prefix argument).
  5285. z        like Space except set number of lines for further
  5286.            scrolling commands to scroll by.
  5287. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  5288. =        prints the current line number.
  5289. g        goes to line given by prefix argument.
  5290. / or M-C-s    searches forward for regular expression
  5291. \\ or M-C-r    searches backward for regular expression.
  5292. n        searches forward for last regular expression.
  5293. p        searches backward for last regular expression.
  5294. C-@ or .    set the mark.
  5295. x        exchanges point and mark.
  5296. C-s or s    do forward incremental search.
  5297. C-r or r    do reverse incremental search.
  5298. @ or '        return to mark and pops mark ring.
  5299.           Mark ring is pushed at start of every
  5300.           successful search and when jump to line to occurs.
  5301.           The mark is set on jump to buffer start or end.
  5302. ? or h        provide help message (list of commands).
  5303. \\[Helper-help]        provides help (list of commands or description of a command).
  5304. C-n        moves down lines vertically.
  5305. C-p        moves upward lines vertically.
  5306. C-l        recenters the screen.
  5307. q or C-c    exit view-mode and return to previous buffer.
  5308.  
  5309. Entry to this mode calls the value of  view-hook  if non-nil.
  5310. \\{view-mode-map}" nil nil)
  5311.  
  5312. ;;;***
  5313.  
  5314. ;;;### (autoloads (vip-mode) "vip" "vip.el" (11285 51578))
  5315. ;;; Generated autoloads from vip.el
  5316.  
  5317. (autoload (quote vip-mode) "vip" "\
  5318. Turn on VIP emulation of VI." t nil)
  5319.  
  5320. ;;;***
  5321.  
  5322. ;;;### (autoloads (run-scheme) "xscheme" "xscheme.el" (11185 17047))
  5323. ;;; Generated autoloads from xscheme.el
  5324.  
  5325. (autoload (quote run-scheme) "xscheme" "\
  5326. Run an inferior Scheme process.
  5327. Output goes to the buffer `*scheme*'.
  5328. With argument, asks for a command line." t nil)
  5329.  
  5330. ;;;***
  5331.  
  5332. ;;;### (autoloads (psychoanalyze-pinhead yow) "yow" "yow.el" (11285 51586))
  5333. ;;; Generated autoloads from yow.el
  5334.  
  5335. (autoload (quote yow) "yow" "\
  5336. Return or display a random Zippy quotation." t nil)
  5337.  
  5338. (autoload (quote psychoanalyze-pinhead) "yow" "\
  5339. Zippy goes to the analyst." t nil)
  5340.  
  5341. ;;;***
  5342.  
  5343. ;;; Don't make backup versions of this file - most of it is generated
  5344. ;;; automatically by autoload.el, and what isn't changes rarely.
  5345. ;;; Local Variables:
  5346. ;;; version-control: never
  5347. ;;; no-byte-compile: t
  5348. ;;; no-update-autoloads: t
  5349. ;;; End:
  5350. ;;; loaddefs.el ends here
  5351.